replace vsnip with luasnip,clean some confs

This commit is contained in:
siduck76
2021-06-26 18:20:25 +05:30
parent 3523eb277b
commit 9da869feee
4 changed files with 49 additions and 25 deletions

View File

@@ -1,7 +1,6 @@
local opt = vim.opt
opt.ruler = false
opt.showmode = false
opt.hidden = true
opt.ignorecase = true
opt.splitbelow = true
@@ -50,4 +49,18 @@ end
-- file extension specific tabbing
-- vim.cmd([[autocmd Filetype python setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4]])
-- blankline config
M.blankline = function()
vim.g.indentLine_enabled = 1
vim.g.indent_blankline_char = ""
vim.g.indent_blankline_filetype_exclude = {"help", "terminal", "dashboard"}
vim.g.indent_blankline_buftype_exclude = {"terminal"}
vim.g.indent_blankline_show_trailing_blankline_indent = false
vim.g.indent_blankline_show_first_indent_level = false
end
return M