summaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix34
1 files changed, 3 insertions, 31 deletions
diff --git a/home.nix b/home.nix
index 8b843cc..9c01c0c 100644
--- a/home.nix
+++ b/home.nix
@@ -1,7 +1,9 @@
{ config, pkgs, libs, ... }:
{
- imports = [ ./apps/firefox.nix ];
+ imports = [
+ ./apps/firefox.nix
+ ];
gtk.enable = true;
@@ -26,36 +28,6 @@
EDITOR = "nvim";
};
- programs.neovim = {
- enable = true;
-
- plugins = with pkgs.vimPlugins; [
- comment-nvim
-
- {
- plugin = lualine-nvim;
- type = "lua";
- config = "${builtins.readFile nvim/plugin/lualine.lua}";
- }
- nvim-web-devicons
-
- {
- plugin = gruvbox;
- config = "colorscheme gruvbox";
- }
-
- {
- plugin = nvim-lspconfig;
- type = "lua";
- config = "${builtins.readFile nvim/plugin/lsp.lua}";
- }
- ];
-
- extraLuaConfig = ''
- ${builtins.readFile nvim/options.lua }
- '';
- };
-
programs.home-manager.enable = true;
programs.zsh = {