Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

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

feat(neovim): Tweak indent-blankline, treesitter settings

+27 -2
+27 -2
nix/home/modules/cli/editors/neovim/default.nix
··· 46 46 settings.keymap.recommended = true; 47 47 }; 48 48 dashboard.enable = true; 49 - indent-blankline.enable = true; 49 + indent-blankline = { 50 + enable = true; 51 + settings = { 52 + exclude = { 53 + buftypes = [ 54 + "terminal" 55 + "quickfix" 56 + ]; 57 + filetypes = [ 58 + "" 59 + "checkhealth" 60 + "dashboard" 61 + "help" 62 + "lspinfo" 63 + "packer" 64 + "TelescopePrompt" 65 + "TelescopeResults" 66 + ]; 67 + }; 68 + }; 69 + }; 50 70 mini-icons.enable = true; 51 71 mini-tabline.enable = true; 52 72 mini-statusline.enable = true; ··· 60 80 indent.enable = true; 61 81 grammarPackages = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [ 62 82 bash 63 - nix 83 + gitattributes 84 + gitcommit 85 + gitignore 86 + json 64 87 regex 88 + toml 89 + yaml 65 90 ]; 66 91 }; 67 92 treesiter-textobjects = {