diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-01-03 00:08:38 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-01-03 00:08:38 +0300 |
commit | 82f349b990bfb8fec6cfa89886bcb97dec640f4c (patch) | |
tree | 1edc1417545fbb7ee6384ab45b004b1c71158a7b /.config/nvim/lua/user/options.lua | |
parent | 340bd3893f90cefa9d6c2f60364008cf7ca1c53c (diff) |
added LSP shortcuts
Diffstat (limited to '.config/nvim/lua/user/options.lua')
-rw-r--r-- | .config/nvim/lua/user/options.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/nvim/lua/user/options.lua b/.config/nvim/lua/user/options.lua index 44c3599..098277d 100644 --- a/.config/nvim/lua/user/options.lua +++ b/.config/nvim/lua/user/options.lua @@ -28,7 +28,9 @@ local options = { splitbelow = true, splitright = true, -- autocompletion - completeopt = { 'menuone', 'noselect', 'noinsert' } + completeopt = { 'menuone', 'noselect', 'noinsert' }, + -- treesitter + foldlevel = 3, } for key, val in pairs(options) do |