diff options
Diffstat (limited to '.vim/plugin/options.lua')
| -rw-r--r-- | .vim/plugin/options.lua | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/.vim/plugin/options.lua b/.vim/plugin/options.lua index a25a646..dba726a 100644 --- a/.vim/plugin/options.lua +++ b/.vim/plugin/options.lua @@ -10,7 +10,13 @@ opt.clipboard:prepend({ 'unnamedplus' }) opt.inccommand = 'split' -- show whitespace indicators -opt.listchars:append({ trail = '¬', tab = '> ' }) +opt.list = true +opt.listchars:append({ + trail = '¬', + tab = '> ', + -- space = '·', + lead = '·', +}) opt.showbreak = '↪ ' -- show indicator and wrap text at 80 chars @@ -25,3 +31,9 @@ opt.concealcursor = nil opt.foldmethod = 'expr' opt.foldexpr = 'v:lua.vim.treesitter.foldexpr()' opt.foldlevel = 99 + +-- https://fosstodon.org/@rockorager/114183888444195197 +opt.mousescroll = 'ver:1,hor:6' + +-- load local vim config (will as to allow it) +opt.exrc = true |