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', 'jdtls',
'pylsp', 'pylsp',
'html', 'html',
'vimls' 'vimls',
'csharp_ls'
} }
for _, name in pairs(required_servers) do for _, name in pairs(required_servers) do
@ -128,6 +129,7 @@ for _, server in ipairs({
'ccls', 'ccls',
'clangd', 'clangd',
'cmake', 'cmake',
'csharp_ls'
}) do }) do
lspconfig[server].setup(opts) lspconfig[server].setup(opts)
end end

View File

@ -316,7 +316,7 @@ return packer.startup({
config = function() config = function()
-- TODO: Clean this up and use the `nvim.api.nvim_set_hl` api -- TODO: Clean this up and use the `nvim.api.nvim_set_hl` api
vim.cmd( 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, end,
}) })
@ -565,7 +565,7 @@ return packer.startup({
'neo-tree-popup', 'neo-tree-popup',
'TelescopePrompt', 'TelescopePrompt',
}, },
set_cursorline = false set_cursorline = false,
}) })
end, end,
}) })
@ -618,6 +618,15 @@ return packer.startup({
end, end,
}) })
-- Neomake for asynchronous `make` command
use({
'neomake/neomake',
config = function ()
vim.cmd[[
call neomake#configure#automake('w')
]]
end
})
-- Leave at end!!! -- Leave at end!!!
-- Install and deploy packer plugins -- Install and deploy packer plugins
-- automatically -- automatically