aboutsummaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/init.lua b/init.lua
index bf3656e..d34744f 100644
--- a/init.lua
+++ b/init.lua
@@ -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