nvim: remove ccls in favor of clang
Removes CCLS nvim configuration and exchanges the ccls package for clang-tools
This commit is contained in:
parent
57132cc602
commit
1fd1838d3f
2 changed files with 2 additions and 10 deletions
|
@ -22,14 +22,6 @@ require'lspconfig'.pylsp.setup{
|
|||
}
|
||||
}
|
||||
}
|
||||
require'lspconfig'.ccls.setup{
|
||||
init_options = {
|
||||
highlight = {
|
||||
lsRanges = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
-- Add additional capabilities supported by nvim-cmp
|
||||
local capabilities = require("cmp_nvim_lsp").default_capabilities()
|
||||
|
@ -102,7 +94,6 @@ cmp.setup {
|
|||
n"--.W.--"n
|
||||
Kiloroy Was Here
|
||||
]]
|
||||
package.path = package.path .. ";/etc/nixos/config/nvim"
|
||||
|
||||
-- Funky plugins
|
||||
require("conform").setup({
|
||||
|
@ -151,6 +142,7 @@ require("spaceman").setup({
|
|||
directories = {
|
||||
"~/Documents/Classes",
|
||||
"~/Documents/Repos",
|
||||
"~/Documents/Repos/ExtremeHeatTransfer",
|
||||
},
|
||||
use_default_keymaps = true,
|
||||
hooks = {
|
||||
|
|
|
@ -66,7 +66,7 @@ in
|
|||
environment.systemPackages = (lib.attrVals [
|
||||
"black"
|
||||
"btop"
|
||||
"ccls"
|
||||
"clang-tools"
|
||||
"eza"
|
||||
"fd"
|
||||
"fzf"
|
||||
|
|
Loading…
Reference in a new issue