diff options
| author | anand <anand.panchdhari@gmail.com> | 2026-01-14 21:16:54 +0530 |
|---|---|---|
| committer | anand <anand.panchdhari@gmail.com> | 2026-01-14 21:16:54 +0530 |
| commit | 783b0263bf6a999b6a02a3459a771b88263f2af6 (patch) | |
| tree | d356a0a0a77dbe77ee864050f69e58402a3e5a00 | |
| parent | b5adb5105d21b164e8e4e6ed90b3c8306f8a07b9 (diff) | |
dont remember
| -rw-r--r-- | configuration.nix | 2 | ||||
| -rwxr-xr-x | home.nix | 10 | ||||
| -rwxr-xr-x | nvim/lsp/clangd.lua | 3 |
3 files changed, 12 insertions, 3 deletions
diff --git a/configuration.nix b/configuration.nix index b44e5b1..5b6a82e 100644 --- a/configuration.nix +++ b/configuration.nix @@ -141,6 +141,8 @@ fonts.packages = with pkgs; [ nerd-fonts.jetbrains-mono + corefonts + vista-fonts ]; fonts.fontconfig = { @@ -98,6 +98,7 @@ in imv libreoffice godot + mgba ]; xdg.configFile = builtins.mapAttrs (name: subpath: { @@ -105,6 +106,15 @@ in recursive = true; }) configs; + xdg.terminal-exec = { + enable = true; + settings = { + default = [ + "org.wezfurlong.wezterm.desktop" + ]; + }; + }; + home.sessionVariables = { EDITOR = "nvim"; }; diff --git a/nvim/lsp/clangd.lua b/nvim/lsp/clangd.lua index 08544d0..a444377 100755 --- a/nvim/lsp/clangd.lua +++ b/nvim/lsp/clangd.lua @@ -72,9 +72,6 @@ return { 'configure.ac', -- AutoTools '.git', }, - init_options = { - fallbackFlags = { '--std=c++23' } - }, capabilities = { textDocument = { completion = { |
