home:natto: switched to xmonad+xmobar

This commit is contained in:
2021-06-16 01:36:39 +05:30
parent f27ecaf54f
commit ba8dbff511
12 changed files with 253 additions and 19 deletions

View File

@@ -6,9 +6,10 @@
package = pkgs.neovim-nightly;
defaultEditor = true;
configure = {
customRC ="lua << EOF\n" + builtins.readFile ./nvim/init.lua + "\nEOF\n";
customRC = "lua << EOF\n" + builtins.readFile ./nvim/init.lua + "\nEOF\n";
packages.myVimPackage = with pkgs.vimPlugins; {
start = [
nvim-colorizer-lua
auto-pairs
vim-floaterm
vim-closetag
@@ -22,6 +23,7 @@
vim-rooter
vim-polyglot
nvim-tree-lua
indentLine
(gruvbox.overrideAttrs (oa: { patches = [ ./nvim/gruvbox.patch ]; }))
(pkgs.vimUtils.buildVimPlugin {
name = "presence-nvim";
@@ -38,4 +40,3 @@
};
};
}