nVim/lua/core/init.lua
Robert Morrison 986aa13d27 fix(termux_language_server): fix lsp config
Fix the config for termux_language_server, allowing it to fully work
with all filetypes it actually supports
2025-09-28 04:37:09 +01:00

16 lines
290 B
Lua

local M = {}
M.setup = function()
require("core.options")
require("core.autocommands")
require("core.filetypes")
require("plugins.lazy")
-- Load this after loading plugins to ensure default lspconfig is there
require("core.lspconfig")
vim.cmd.colorscheme("gruvbox")
end
return M