vim: fix formatting and typos
This commit is contained in:
parent
0a7a3be210
commit
21e1596371
2 changed files with 13 additions and 7 deletions
|
@ -1,8 +1,14 @@
|
||||||
local gruvbox = { 'fschauen/gruvbox.nvim', dev = true, lazy = true }
|
local gruvbox = {
|
||||||
local solarized = { 'fschauen/solarized.nvim', dev = true, lazy =true }
|
'fschauen/gruvbox.nvim',
|
||||||
|
dev = true,
|
||||||
return {
|
lazy = true
|
||||||
gruvbox,
|
|
||||||
solarized,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
local solarized = {
|
||||||
|
'fschauen/solarized.nvim',
|
||||||
|
dev = true,
|
||||||
|
lazy = true
|
||||||
|
}
|
||||||
|
|
||||||
|
return { gruvbox, solarized }
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@ M.config = function()
|
||||||
end,
|
end,
|
||||||
|
|
||||||
on_init = function(client, --[[init_result]]_)
|
on_init = function(client, --[[init_result]]_)
|
||||||
-- Opt out of semantic highlighting because it has been casusing the issues
|
-- Opt out of semantic highlighting because it has been causing the issues
|
||||||
-- https://github.com/neovim/nvim-lspconfig/issues/2542#issuecomment-1547019213
|
-- https://github.com/neovim/nvim-lspconfig/issues/2542#issuecomment-1547019213
|
||||||
if client.server_capabilities then
|
if client.server_capabilities then
|
||||||
client.server_capabilities.semanticTokensProvider = false
|
client.server_capabilities.semanticTokensProvider = false
|
||||||
|
|
Loading…
Add table
Reference in a new issue