nvim/config/init.lua
2023-01-03 22:05:09 -05:00

19 lines
577 B
Lua

-- References to ./lua/
-- Plugin management via Packer
vim.opt.termguicolors=true
require("plugins")
-- Vim mappings, see lua/config/which.lua for more mappings
-- require("mappings")
-- All non plugin related (vim) options
require("options")
-- Vim autocommands/autogroups
-- require("autocmd")
-- enable filetype.lua
-- This feature is currently opt-in
-- as it does not yet completely match all of the filetypes covered by filetype.vim
-- status: https://github.com/neovim/neovim/issues/18604
vim.g.do_filetype_lua = 1
-- disable filetype.vim
vim.g.did_load_filetypes = 0