Fix the config for termux_language_server, allowing it to fully work with all filetypes it actually supports
16 lines
290 B
Lua
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
|