Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ADD supermaven nvim, small changes to deps

+15 -2
+2
noah-home.nix
··· 77 77 unstable.flyctl 78 78 unstable.bun 79 79 unstable.gh 80 + unstable.zed-editor 80 81 81 82 82 83 # JetBrains ··· 134 135 ".envrc" 135 136 "flake.nix" 136 137 "shell.nix" 138 + ".clj-kondo/" 137 139 ]; 138 140 }; 139 141 programs.aerc = {
+2 -1
nvim/init.lua
··· 226 226 "vim", 227 227 "zig", 228 228 "uxntal", 229 - "kdl" 229 + "kdl", 230 + "roc", 230 231 } 231 232 } 232 233 )
+1
nvim/lua/lsp.lua
··· 105 105 "zls", 106 106 "tsserver", 107 107 "eslint", 108 + "roc_ls", 108 109 } 109 110 -- #simple_lsps is the length of the table when treated as a list... funky! 110 111 for _,v in pairs(simple_lsps) do
+9
nvim/lua/plugins.lua
··· 187 187 {"ptzz/lf.vim", cmd = {"Lf"}, dependencies = {"voldikss/vim-floaterm"}}, 188 188 -- Copilot 189 189 -- use {"github/copilot.vim", lazy = true, cmd = {"Copilot"}} 190 + -- SuperMaven, another AI coding tool 191 + { 192 + "supermaven-inc/supermaven-nvim", 193 + opts = { 194 + keymaps = { 195 + accept_suggestion = "<C-f>" 196 + } 197 + } 198 + }, 190 199 -- Mason 191 200 --{ 192 201 -- "williamboman/mason.nvim",
+1 -1
packages.nix
··· 82 82 openssl 83 83 sqlite 84 84 libunwind 85 - libGL 85 + libglvnd 86 86 ]; 87 87 }; 88 88