diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2024-03-27 02:38:10 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-27 02:38:10 +0000 |
| commit | f3cc663bedca46d176041579fd062f89e25217b3 (patch) | |
| tree | b41644ca444b474d2815a55609d0f1b089d64c8e /home.nix | |
| parent | 85baf135eea17eeaae9da6a9d3268fa6de5f3b0d (diff) | |
update to nixvim config
Diffstat (limited to 'home.nix')
| -rw-r--r-- | home.nix | 34 |
1 files changed, 3 insertions, 31 deletions
@@ -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 = { |
