1 files changed, 0 insertions, 29 deletions
diff --git a/modules/packages/vim.nix b/modules/packages/vim.nix
deleted file mode 100755
index 1b7bb37..0000000
--- a/modules/packages/vim.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ pkgs, ... }:
-{
- environment.variables = {
- EDITOR = "vim";
- };
-
- environment.systemPackages = with pkgs; [
- (neovim.override {
- vimAlias = true;
- configure = {
- packages.myPlugins = with pkgs.vimPlugins; {
- start = [
- vim-lastplace
- vim-nix
- vim-airline
- ];
- opt = [ ];
- };
- customRC = ''
- " your custom vimrc
- set nocompatible
- set backspace=indent,eol,start
- colorscheme vim
- " ...
- '';
- };
- })
- ];
-}
|