diff --git a/hmModules/apps/neovim/app.nix b/hmModules/apps/neovim/app.nix index d655103..4ef6b51 100644 --- a/hmModules/apps/neovim/app.nix +++ b/hmModules/apps/neovim/app.nix @@ -8,7 +8,6 @@ go.enable = lib.mkEnableOption "Enables go support"; nix.enable = lib.mkEnableOption "Enables nix support"; rust.enable = lib.mkEnableOption "Enables rust support"; - typescript.enable = lib.mkEnableOption "Enables typescript support"; }; themes = { catppuccin.enable = lib.mkEnableOption "Enables catppuccin theme"; @@ -119,16 +118,6 @@ go-nvim ]); - typescript-pkg = lopts cfgl.typescript.enable (with pkgs.vimPlugins; [ - { - plugin = typescript-tools-nvim; - type = "lua"; - config = '' - require("typescript-tools").setup {} - ''; - } - ]); - catppuccin-pkg = lopts cfgt.catppuccin.enable (with pkgs.vimPlugins; [ { plugin = catppuccin-nvim; @@ -162,8 +151,8 @@ ''; } ]); - in comments ++ fugitive ++ luasnip-pkg ++ lualine ++ nix-pkg ++ rust-pkg - ++ go-pkg ++ wiki ++ catppuccin-pkg ++ typescript-pkg; + in comments ++ fugitive ++ luasnip-pkg ++ lualine ++ + nix-pkg ++ rust-pkg ++ go-pkg ++ wiki ++ catppuccin-pkg; }; }; } diff --git a/hmModules/apps/neovim/plugin/treesitter.nix b/hmModules/apps/neovim/plugin/treesitter.nix index a6bb8c0..d1e9fe3 100644 --- a/hmModules/apps/neovim/plugin/treesitter.nix +++ b/hmModules/apps/neovim/plugin/treesitter.nix @@ -25,7 +25,6 @@ in { p.tree-sitter-go p.tree-sitter-nix p.tree-sitter-rust - p.tree-sitter-typescript ]; in with pkgs.vimPlugins; [ { diff --git a/hosts/onizuka/host.nix b/hosts/onizuka/host.nix index d03088d..e0227cd 100644 --- a/hosts/onizuka/host.nix +++ b/hosts/onizuka/host.nix @@ -15,7 +15,7 @@ sshd = { enable = true; port = 922; - }; + } tailscale.enable = true; tuigreet.enable = true; diff --git a/hosts/onizuka/users/pan/user.nix b/hosts/onizuka/users/pan/user.nix index bc112d7..2efdf12 100644 --- a/hosts/onizuka/users/pan/user.nix +++ b/hosts/onizuka/users/pan/user.nix @@ -58,7 +58,6 @@ c.enable = true; nix.enable = true; rust.enable = true; - typescript.enable = true; }; neovim.plugins = { comments.enable = true;