summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/user/options.lua
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2023-05-26 11:20:50 +0200
committeryuzu-eva <stevenhu@web.de>2023-05-26 11:20:50 +0200
commitc72de1d239aac325155fc840cd226309435538de (patch)
treef00f2295d15f16260be8525e93a3a59c608c54d3 /.config/nvim/lua/user/options.lua
parent9a3d9c575c85e8b9bed8afb64afde22ebfef5b8f (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.lua3
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"