nvim: Fix LSP configuration
Not sure what changed in recent releases for either nvim, packer or lspconfig plugins, but, our custom LSP configuration file seems to not be loaded or have any effect when specified via packer's config directive. So load it manually in init.
This commit is contained in:
parent
0ed4d83ef8
commit
fcbdfc31ab
2 changed files with 2 additions and 2 deletions
|
@ -100,6 +100,7 @@ require 'plugins'
|
||||||
require 'autocmd'
|
require 'autocmd'
|
||||||
require 'keymappings'
|
require 'keymappings'
|
||||||
require 'yolokai'
|
require 'yolokai'
|
||||||
|
require 'lsp'
|
||||||
|
|
||||||
-- Load our custom color scheme
|
-- Load our custom color scheme
|
||||||
vim.api.nvim_command('colorscheme yolokai')
|
vim.api.nvim_command('colorscheme yolokai')
|
||||||
|
|
|
@ -121,9 +121,8 @@ local init = function ()
|
||||||
use {
|
use {
|
||||||
'neovim/nvim-lspconfig',
|
'neovim/nvim-lspconfig',
|
||||||
'ojroques/nvim-lspfuzzy',
|
'ojroques/nvim-lspfuzzy',
|
||||||
config = "require('lsp')",
|
'nvim-lua/lsp-status.nvim'
|
||||||
}
|
}
|
||||||
use 'nvim-lua/lsp-status.nvim'
|
|
||||||
-- Language support & syntax highlighting
|
-- Language support & syntax highlighting
|
||||||
-- Haskell
|
-- Haskell
|
||||||
use {
|
use {
|
||||||
|
|
Loading…
Reference in a new issue