📝 Enabled folds in nvim
This commit is contained in:
parent
ccecc7b5b5
commit
75e83b1504
2 changed files with 23 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ vim.opt.cindent = true
|
|||
vim.opt.tabstop = 8
|
||||
vim.opt.cursorcolumn = true
|
||||
-- Disable folds
|
||||
vim.g.nofoldenable = true
|
||||
-- vim.g.nofoldenable = true
|
||||
-- Fix Splitting
|
||||
vim.opt.splitbelow = true
|
||||
vim.opt.splitright = true
|
||||
|
|
@ -65,6 +65,9 @@ vim.cmd([[autocmd Filetype json let g:indentLine_setConceal = 0]])
|
|||
-- enable clipboard
|
||||
vim.cmd([[set clipboard+=unnamedplus]])
|
||||
|
||||
-- enable folds
|
||||
vim.cmd([[set foldmethod=manual]])
|
||||
|
||||
-- enable hard/soft wrap
|
||||
vim.cmd([[set wrap linebreak textwidth=80]])
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue