diff options
Diffstat (limited to 'ted.cfg')
-rw-r--r-- | ted.cfg | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -36,6 +36,15 @@ identifier-trigger-characters = off # enable LSP support (for autocompletion, etc.) # you can also set `lsp = ""` but this is a quick way to disable LSP servers for all langauges lsp-enabled = yes +# maximum editable file size. +# ted will set the buffer to view-only if a file larger than this is loaded. +# NOTE: ted is not really meant for absolutely massive files. +# it should handle anything up to 100,000 lines just fine (maybe small hiccups in some cases for >20,000) +# files up to 1,000,000 lines should be just fine in view-only mode (although they might take a bit of time to load) +max-file-size = 20000000 +# absolute maximum file size. +# ted will produce an error if a file larger than this is loaded. +max-file-size-view-only = 100000000 # search depth for files to generate tags for. # if set to 0, tag generation/regeneration will do nothing |