Compare commits
No commits in common. "7e2db80615dc5414a067f952c7b4fbe7104e6308" and "4ca6e49b9f3e8386d15dfbaaadcd36521462bb8a" have entirely different histories.
7e2db80615
...
4ca6e49b9f
1 changed files with 6 additions and 7 deletions
|
@ -60,12 +60,12 @@ return {
|
|||
config = function()
|
||||
require('gitsigns').setup { -- configure symbols and colors
|
||||
signs = {
|
||||
add = { text = '╎'},
|
||||
change = { text = '│'},
|
||||
delete = { text = '_'},
|
||||
topdelete = { text = '‾'},
|
||||
changedelete = { text = '~'},
|
||||
untracked = { text = '╎'},
|
||||
add = {hl = 'GitSignsChange', text = '╎'},
|
||||
change = {hl = 'GitSignsChange', text = '│'},
|
||||
delete = {hl = 'GitSignsDelete', text = '_'},
|
||||
topdelete = {hl = 'GitSignsDelete', text = '‾'},
|
||||
changedelete = {hl = 'GitSignsDelete', text = '~'},
|
||||
untracked = {hl = 'GitSignsUntracked', text = '╎'},
|
||||
},
|
||||
}
|
||||
end
|
||||
|
@ -194,7 +194,6 @@ return {
|
|||
lspconfig.ruby_lsp.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
||||
lspconfig.elixirls.setup({capabilites=capabilities, on_attach=set_lsp_binds, cmd= {"/usr/bin/elixir-ls"}})
|
||||
lspconfig.gopls.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
||||
lspconfig.dartls.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
||||
-- lspconfig.rust_analyzer.setup({capabilities=capabilities, on_attach=set_lsp_binds, settings = { ['rust-analyzer'] = { checkOnSave = { command = "clippy"}}}})
|
||||
-- lspconfig.java_language_server.setup({capabilities=capabilities, on_attach=set_lsp_binds, cmd = { '/home/alemi/dev/software/java-language-server/dist/lang_server_linux.sh' }})
|
||||
-- lspconfig.kotlin_language_server.setup({capabilities=capabilities, on_attach=set_lsp_binds})
|
||||
|
|
Loading…
Reference in a new issue