From: Alexander Goussas Date: Sat, 27 Jun 2026 16:36:41 +0000 (-0500) Subject: nvim: configure ccls lsp for c++ X-Git-Url: http://git.frustrated-labs.net/?a=commitdiff_plain;h=992aca57e2a8c5cac7dde1a1e02b08aa43ed238c;p=dotfiles.git nvim: configure ccls lsp for c++ --- diff --git a/ghostty/.config/ghostty/config b/ghostty/.config/ghostty/config index 2d31efa..b525793 100644 --- a/ghostty/.config/ghostty/config +++ b/ghostty/.config/ghostty/config @@ -6,8 +6,8 @@ quit-after-last-window-closed = true # ==== Font # -#font-family = Hasklug Nerd Font Mono -font-family = Cartograph CF +font-family = Hasklug Nerd Font Mono +#font-family = Cartograph CF font-size = 15 # ==== Cursor diff --git a/nvim/.config/nvim/lua/plugins/lsp.lua b/nvim/.config/nvim/lua/plugins/lsp.lua index 311d02b..c64402d 100644 --- a/nvim/.config/nvim/lua/plugins/lsp.lua +++ b/nvim/.config/nvim/lua/plugins/lsp.lua @@ -3,7 +3,7 @@ return { "neovim/nvim-lspconfig", config = function() -- Language servers - for _, l in ipairs({'gopls', 'templ', 'ts_ls', 'rust_analyzer'}) do + for _, l in ipairs({'gopls', 'templ', 'ts_ls', 'rust_analyzer', 'ccls'}) do vim.lsp.enable(l) vim.lsp.config(l, {}) end diff --git a/zsh/.zshrc b/zsh/.zshrc index 7898c91..1162860 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -70,3 +70,6 @@ function logo() { } alias k='kubectl' + +$(gcloud beta emulators pubsub env-init) +export NODE_EXTRA_CA_CERTS=~/certs/corporate-ca.pem