summaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2024-03-27 02:38:10 +0000
committerGitHub <noreply@github.com>2024-03-27 02:38:10 +0000
commitf3cc663bedca46d176041579fd062f89e25217b3 (patch)
treeb41644ca444b474d2815a55609d0f1b089d64c8e /home.nix
parent85baf135eea17eeaae9da6a9d3268fa6de5f3b0d (diff)
update to nixvim config
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 = {