Improved neovim config
This commit is contained in:
@ -5,3 +5,16 @@ on("VimEnter", {
|
||||
require("nvim-tree.api").tree.toggle({ focus = false })
|
||||
end,
|
||||
})
|
||||
|
||||
on({ "TermOpen", "TermEnter" }, {
|
||||
callback = function()
|
||||
vim.wo.signcolumn = "no"
|
||||
end,
|
||||
})
|
||||
|
||||
on({ "BufNewFile", "BufRead" }, {
|
||||
pattern = { "*.txt", "*.md" },
|
||||
callback = function()
|
||||
vim.lo.wrap = true
|
||||
end,
|
||||
})
|
||||
|
Reference in New Issue
Block a user