no diagnostics for clangd lol
This commit is contained in:
parent
1ce1b1ee02
commit
bc16c39a59
4 changed files with 15 additions and 20 deletions
|
|
@ -1,12 +1,3 @@
|
|||
-- return {
|
||||
-- 'folke/tokyonight.nvim',
|
||||
-- priority = 1000,
|
||||
-- init = function()
|
||||
-- vim.cmd.colorscheme 'desert'
|
||||
-- vim.cmd.hi 'Comment gui=none'
|
||||
-- end,
|
||||
-- }
|
||||
|
||||
return {
|
||||
'catppuccin/nvim',
|
||||
priority = 1000,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
local COPILOT_ENABLED = false
|
||||
local COPILOT_ENABLED = true
|
||||
|
||||
vim.keymap.set('n', '<F8>', function()
|
||||
if COPILOT_ENABLED then
|
||||
|
|
|
|||
|
|
@ -155,7 +155,11 @@ return { -- LSP Configuration & Plugins
|
|||
-- - settings (table): Override the default settings passed when initializing the server.
|
||||
-- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
|
||||
local servers = {
|
||||
clangd = {},
|
||||
clangd = {
|
||||
diagnostics = {
|
||||
enable = false,
|
||||
},
|
||||
},
|
||||
-- gopls = {},
|
||||
pyright = {},
|
||||
-- rust_analyzer = {},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue