nvim/lua/config.lua
wires ec79482e0a
switch theme again
this time to my weird dracula-catppuccin hybrid
2025-03-08 14:18:17 -05:00

17 lines
364 B
Lua

local config = {
border = 'none',
colorscheme = 'dracula',
lsp = {
inlay_hint = false,
format_timeout = 500,
rename_notification = true,
-- table of callbacks pushed via plugins
on_attach_mappings = {},
},
}
function config.lsp.add_on_attach_mapping(callback)
table.insert(config.lsp.on_attach_mappings, callback)
end
return config