nvim/lua/cosmic/config/init.lua
2021-11-09 18:53:52 -08:00

50 lines
1.2 KiB
Lua

-- DO NOT TOUCH :)
local ok, user_config = pcall(require, 'cosmic.config.config')
if not ok then
user_config = {}
end
-- these settings will be merged with any settings definined in config.lua
local default_config = {
lsp = {
format_on_save = true, -- true/false or table of filetypes {'.ts', '.js',}
rename_notification = true,
-- vim.diagnostic.config settiings
servers = {
-- enable/disable server + formatting
-- rust_analyzer = true, -- enable non-default servers
-- or override lsp server options
--[[
rust_analyzer = {
opts = {}
},
]]
sumneko_lua = {
format = false, -- disable formatting all together
},
tsserver = {
format = false, -- disable formatting all together
},
null_ls = {},
},
},
}
local config = vim.tbl_deep_extend('force', default_config, user_config)
local user_servers = vim.tbl_keys(config.lsp.servers)
function config.lsp.can_client_format(client_name)
if config.lsp.servers[client_name] == true then
return true
end
if vim.tbl_contains(user_servers, client_name) and config.lsp.servers[client_name] then
return (config.lsp.servers[client_name].format == true)
end
return true
end
return config