Skyler Grey | 252927a | 2022-10-18 22:18:15 +0100 | [diff] [blame] | 1 | { pkgs, ... }: { |
Skyler Grey | a7feb6e | 2022-08-26 06:51:55 +0100 | [diff] [blame] | 2 | programs.neovim = { |
3 | extraConfig = | ||||
4 | builtins.readFile ./indentation.vim | ||||
5 | + '' | ||||
6 | source ${./indentation.lua} | ||||
7 | ''; | ||||
8 | plugins = with pkgs.vimPlugins; [ | ||||
9 | vim-sleuth | ||||
10 | indent-blankline-nvim | ||||
11 | ]; | ||||
12 | }; | ||||
13 | } |