nvim/init.lua

15 lines
287 B
Lua
Raw Normal View History

2023-05-13 00:45:08 +00:00
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
2023-11-07 09:29:53 +00:00
2024-01-31 22:40:43 +00:00
vim.g.editorconfig = true
vim.cmd("filetype plugin on")
vim.cmd("filetype indent off")
2023-11-07 09:29:53 +00:00
if vim.loader then
vim.loader.enable()
end
vim.api.nvim_create_autocmd({ "TermOpen" }, {
command = "set nobuflisted",
})