diff options
author | pommicket <pommicket@gmail.com> | 2022-11-02 19:58:20 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-11-02 19:58:20 -0400 |
commit | 9d0433ba028792f5a468507dba28d406b9f758e7 (patch) | |
tree | f83f5db4b4d6e54ef70c252f624b108d40978ac6 /ted.cfg | |
parent | b070e5ce01c829bd101b1e0eda49f1e25d9d125c (diff) |
fixed path-specific settings bugs. stuff seems to be working now
Diffstat (limited to 'ted.cfg')
-rw-r--r-- | ted.cfg | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -234,7 +234,7 @@ Python = .py Tex = .tex Markdown = .md HTML = .html, .php, .xml, .xhtml, .iml -Config = .cfg +Config = .cfg, .toml Javascript = .js Java = .java Go = .go @@ -242,3 +242,11 @@ Go = .go # You can add language-specific settings like this: # [HTML.core] # tab-width = 2 + +# Or path-specific settings like this: +# [/path/to/special/project//colors] +# keyword = #f0f + +# Or both! +# [/path/to/special/project//Javascript.keyboard] +# Ctrl+J = "function() {" :insert-text |