Merge branch 'test_nvim_convert' of github.com:elitherl/vim-config into test_nvim_convert

This commit is contained in:
Edward Litherland-Smith 2022-08-08 13:53:42 +01:00
commit 606f61a11a

View file

@ -37,7 +37,7 @@ local lsp_flags = {
debounce_text_changes = 150,
}
require('lspconfig')['pylsp'].setup{
cmd = {"/home/elitherl/.pyenv/versions/neovim3/bin/pylsp"},
cmd = {os.getenv( "HOME" ).."/.pyenv/versions/neovim3/bin/pylsp"},
on_attach = on_attach,
flags = lsp_flags,
settings = {
@ -50,7 +50,7 @@ require('lspconfig')['pylsp'].setup{
}
}
require('lspconfig')['fortls'].setup{
cmd = {"/home/elitherl/.pyenv/versions/neovim3/bin/fortls"},
cmd = {os.getenv( "HOME" ).."/.pyenv/versions/neovim3/bin/fortls"},
on_attach = on_attach,
flags = lsp_flags,
}