add some options from kickstart nvim

This commit is contained in:
Andrzej Stepien 2024-03-16 17:09:16 +01:00
parent e23b74fc3c
commit 3fa79a2c02
1 changed files with 6 additions and 0 deletions

View File

@ -16,4 +16,10 @@ vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
vim.cmd([[ set nofoldenable]])
vim.opt.foldcolumn = "2"
-- Don't show the mode, since it's already in status line
vim.opt.showmode = false
-- Sync clipboard between OS and Neovim.
-- Remove this option if you want your OS clipboard to remain independent.
-- See `:help 'clipboard'`
vim.opt.clipboard = "unnamedplus"