diff options
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -58,6 +58,8 @@ vim.o.spelllang = "en_ca" vim.o.hidden = true -- Ask confirm on exit instead of error vim.o.confirm = true +-- If a filetype has folding enabled, make sure all folds are opened +vim.o.foldlevel=99 -- My Highlights vim.cmd [[ @@ -394,5 +396,10 @@ vim.cmd([[ let g:oscyank_term = 'default' ]]) + -- vim-bufkill vim.api.nvim_set_keymap('n', '<leader>bd', '<cmd>BD<cr>', { noremap = true }) + + +-- vim-markdown +vim.g.vim_markdown_auto_insert_bullets = 0 |