[MAJOR] Added a theme change in rofi script. Need to add rofi itself and other stuff still

This commit is contained in:
Afonso Franco 2023-11-01 22:56:14 +00:00
parent b41b0b00d6
commit 95fddf371b
Signed by: afonso
SSH key fingerprint: SHA256:JiuxZNdA5bRWXPMUJChI0AQ75yC+cXY4xM0IaVwEVys
14 changed files with 157 additions and 37 deletions

View file

@ -48,19 +48,20 @@ local capabilities = vim.tbl_deep_extend(
require('cmp_nvim_lsp').default_capabilities()
)
local setup = {
on_attach = on_attach,
flags = lsp_flags,
capabilities = capabilities,
}
mason_lspconfig.setup_handlers {
-- This is a default handler that will be called for each installed server (also for new servers that are installed during a session)
function(server_name)
lspconfig[server_name].setup { setup }
lspconfig[server_name].setup {
on_attach = on_attach,
flags = lsp_flags,
capabilities = capabilities,
}
end,
}
lspconfig["ocamllsp"].setup {
setup
lspconfig["ocamllsp"].setup{
on_attach = on_attach,
flags = lsp_flags,
capabilities = capabilities,
}