My Nix Configuration
2
fork

Configure Feed

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

[nvim] update config to speed stuff up

dish c6ef8ac0 a2f463eb

+20 -3
+3 -3
flake.lock
··· 634 634 "systems": "systems_5" 635 635 }, 636 636 "locked": { 637 - "lastModified": 1768906339, 638 - "narHash": "sha256-iwkHIz2IYRcELkBoKXQUHlP0bFGmrHIz/roJUVYsyx8=", 637 + "lastModified": 1769710562, 638 + "narHash": "sha256-LBeeHvClYXZL5gkL77njp5g973L7RGc0XqPzxdeuFDw=", 639 639 "owner": "notashelf", 640 640 "repo": "nvf", 641 - "rev": "18c55d3bebf2c704970b4ea6fd0261808bec8d94", 641 + "rev": "cc68c4d0103ca58cfd506b29559c704573d1fc43", 642 642 "type": "github" 643 643 }, 644 644 "original": {
+16
neovim/basics.nix
··· 44 44 visuals = { 45 45 rainbow-delimiters.enable = true; 46 46 }; 47 + # Disable useless built-in plugins 48 + globals = { 49 + loaded_2html_plugin = 1; 50 + loaded_gzip = 1; 51 + loaded_man = 1; 52 + loaded_matchit = 1; 53 + loaded_matchparen = 1; 54 + loaded_netrw = 1; 55 + loaded_netrwPlugin = 1; 56 + loaded_remote_file_loader = 1; 57 + loaded_remote_plugins = 1; 58 + loaded_spellfile_plugin = 1; 59 + loaded_tarPlugin = 1; 60 + loaded_tutor_mode_plugin = 1; 61 + loaded_zipPlugin = 1; 62 + }; 47 63 }; 48 64 }
+1
neovim/dishvim.nix
··· 22 22 # keep-sorted end 23 23 ]; 24 24 config.vim = { 25 + enableLuaLoader = true; 25 26 treesitter.enable = true; 26 27 treesitter.grammars = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [ 27 28 tera