neovim: formatting, csharp_ls

This commit is contained in:
Price Hiller 2022-05-08 22:10:24 -05:00
parent 0cc65f7c72
commit 6a97a3734f
2 changed files with 14 additions and 3 deletions

View File

@ -17,7 +17,8 @@ local required_servers = {
'jdtls',
'pylsp',
'html',
'vimls'
'vimls',
'csharp_ls'
}
for _, name in pairs(required_servers) do
@ -128,6 +129,7 @@ for _, server in ipairs({
'ccls',
'clangd',
'cmake',
'csharp_ls'
}) do
lspconfig[server].setup(opts)
end

View File

@ -316,7 +316,7 @@ return packer.startup({
config = function()
-- TODO: Clean this up and use the `nvim.api.nvim_set_hl` api
vim.cmd(
[[hi FocusedSymbol term=italic,bold cterm=italic ctermbg=yellow ctermfg=darkblue gui=bold,italic guibg=none guifg=#59D0FF]]
[[hi FocusedSymbol term=italic,bold cterm=italic ctermbg=yellow ctermfg=darkblue gui=bold,italic guibg=none guifg=#59D0FF]]
)
end,
})
@ -565,7 +565,7 @@ return packer.startup({
'neo-tree-popup',
'TelescopePrompt',
},
set_cursorline = false
set_cursorline = false,
})
end,
})
@ -618,6 +618,15 @@ return packer.startup({
end,
})
-- Neomake for asynchronous `make` command
use({
'neomake/neomake',
config = function ()
vim.cmd[[
call neomake#configure#automake('w')
]]
end
})
-- Leave at end!!!
-- Install and deploy packer plugins
-- automatically