summaryrefslogtreecommitdiff
path: root/vim.nix
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2019-08-27 14:34:49 -0700
committerBen Sima <ben@bsima.me>2019-08-27 14:34:49 -0700
commitf3b91d75d2d3153e9fa4d7414929dcc531779727 (patch)
treec49dc426b64cec2d47dc594a1a5398244ccc4dd0 /vim.nix
parent8c810428d6d93ba718df7e8388615ad7fa3d092c (diff)
reorganize, and some small fixes
Diffstat (limited to 'vim.nix')
-rw-r--r--vim.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/vim.nix b/vim.nix
deleted file mode 100644
index 57f79ba..0000000
--- a/vim.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ ... }:
-
-{
- programs.vim = {
- enable = true;
- plugins = [
- "ctrlp"
- "fugitive"
- "editorconfig-vim"
- "surround"
- "vim-colorschemes"
- "vim-ripgrep"
- ];
- extraConfig = builtins.readFile ../vimrc;
- };
-}