diff options
| author | yuzu-eva <stevenhu@web.de> | 2023-05-26 11:20:50 +0200 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2023-05-26 11:20:50 +0200 |
| commit | c72de1d239aac325155fc840cd226309435538de (patch) | |
| tree | f00f2295d15f16260be8525e93a3a59c608c54d3 /.config/nvim/lua/user/options.lua | |
| parent | 9a3d9c575c85e8b9bed8afb64afde22ebfef5b8f (diff) | |
using vim-tmux-navigator; some other updates
Diffstat (limited to '.config/nvim/lua/user/options.lua')
| -rw-r--r-- | .config/nvim/lua/user/options.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/nvim/lua/user/options.lua b/.config/nvim/lua/user/options.lua index 0c35dfc..2fdd6e2 100644 --- a/.config/nvim/lua/user/options.lua +++ b/.config/nvim/lua/user/options.lua @@ -17,8 +17,9 @@ vim.o.splitright = 1 vim.o.splitbelow = 1 vim.o.clipboard = 'unnamedplus' -- Use Linux system clipboard vim.o.updatetime = 250 -- Decrease CursorHold delay -vim.o.redrawtime = 10000 -- Allow more time for loading syntax on large files +vim.o.redrawtime = 10000 -- Allow more time for loading syntax vim.o.foldmethod = "expr" vim.o.foldlevelstart = 10 vim.o.foldexpr = "nvim_treesitter#foldexpr()" vim.o.hlsearch = 0 +vim.o.colorcolumn = "80" |
