From 828c687eff459e5556c4c1db134c47ce1b29f057 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Thu, 26 Jan 2023 20:46:47 +0100 Subject: [PATCH] Basic vim config --- hm_modules/vim.nix | 10 ++++++++++ odin/hm.nix | 1 + thor/hm.nix | 1 + 3 files changed, 12 insertions(+) create mode 100644 hm_modules/vim.nix diff --git a/hm_modules/vim.nix b/hm_modules/vim.nix new file mode 100644 index 0000000..ab452ca --- /dev/null +++ b/hm_modules/vim.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: { + programs.neovim = { + enable = true; + plugins = with pkgs.vimPlugins; [ vim-airline vim-airline-themes ]; + # settings = { ignorecase = true; }; + # extraConfig = '' + # set mouse=a + # ''; + }; +} diff --git a/odin/hm.nix b/odin/hm.nix index 0e27ef7..d0943a1 100644 --- a/odin/hm.nix +++ b/odin/hm.nix @@ -146,6 +146,7 @@ ../hm_modules/thunar.nix # ../hm_modules/twmn.nix ../hm_modules/update_background.nix + ../hm_modules/vim.nix ../hm_modules/webapp.nix ../hm_modules/xidlehook.nix ../hm_modules/zathura.nix diff --git a/thor/hm.nix b/thor/hm.nix index 47de362..1d5e30d 100644 --- a/thor/hm.nix +++ b/thor/hm.nix @@ -138,6 +138,7 @@ ../hm_modules/thunar.nix # ../hm_modules/twmn.nix ../hm_modules/update_background.nix + ../hm_modules/vim.nix ../hm_modules/webapp.nix ../hm_modules/xidlehook.nix ../hm_modules/zathura.nix