My Nix Configuration
2
fork

Configure Feed

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

[dishvim] add more config

dish 71acfc41 8307b7e0

+34 -1
+3 -1
neovim/basics.nix
··· 1 1 { pkgs, ... }: 2 2 { 3 3 imports = [ 4 + # keep-sorted start 4 5 ./mini.nix 5 6 ./plugins/yanky-nvim.nix 7 + ./snacks.nix 8 + # keep-sorted end 6 9 ]; 7 10 config.vim = { 8 11 extraPackages = [ ··· 36 39 }; 37 40 utility.direnv.enable = true; 38 41 visuals = { 39 - indent-blankline.enable = true; 40 42 rainbow-delimiters.enable = true; 41 43 }; 42 44 };
+1
neovim/dishvim.nix
··· 18 18 ./plugins/dial-nvim.nix 19 19 ./plugins/hlargs-nvim.nix 20 20 ./plugins/trouble.nix 21 + ./plugins/obsidian.nix 21 22 # keep-sorted end 22 23 ]; 23 24 config.vim = {
+17
neovim/plugins/obsidian.nix
··· 1 + { 2 + config.vim = { 3 + notes.obsidian = { 4 + enable = true; 5 + setupOpts = { 6 + legacy_commands = false; 7 + workspaces = [ 8 + { 9 + name = "notes"; 10 + path = "~/notes"; 11 + } 12 + ]; 13 + completion.blink = true; 14 + }; 15 + }; 16 + }; 17 + }
+13
neovim/snacks.nix
··· 1 + { 2 + config.vim = { 3 + utility.snacks-nvim = { 4 + enable = true; 5 + setupOpts = { 6 + image.enabled = true; 7 + indent.enabled = true; 8 + picker.enabled = true; 9 + quickfile.enabled = true; 10 + }; 11 + }; 12 + }; 13 + }