diff options
Diffstat (limited to 'ted.cfg')
-rw-r--r-- | ted.cfg | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -29,6 +29,10 @@ auto-reload-config = on build-default-command = make # restore previously opened files when ted is launched? restore-session = on +# show autocomplete menu when a trigger character (e.g. '.') is typed (LSP only) +trigger-characters = on +# should all identifier characters (e.g. a-z) be treated as trigger characters? +identifier-trigger-characters = off # search depth for files to generate tags for. # if set to 0, tag generation/regeneration will do nothing @@ -195,6 +199,8 @@ Ctrl+Shift+tab = :split-swap Escape = :escape [colors] +# below, bg is short for background and hl is short for highlight + border = #a77 active-tab-hl = #a77a # this color is used for tabs which are selected, but not active (because you are on the other side of a split, perhaps) @@ -233,6 +239,14 @@ yes = #afa no = #faa cancel = #ffa +# autocomplete +autocomplete-bg = #000 +autocomplete-border = #999 +autocomplete-hl = #0a0 +autocomplete-variable = #bfb +autocomplete-function = #aaf +autocomplete-type = #fac + # Syntax highlighting keyword = #0c0 preprocessor = #77f |