diff --git a/hosts/macbook/home.nix b/hosts/macbook/home.nix index 046fc02..21ba26b 100644 --- a/hosts/macbook/home.nix +++ b/hosts/macbook/home.nix @@ -6,7 +6,6 @@ ../../modules/home-manager/wezterm ../../modules/home-manager/zsh ../../modules/home-manager/tmux - ../../modules/home-manager/taskwarrior ../../modules/home-manager/zoxide ../../modules/home-manager/eza ../../modules/home-manager/bat @@ -50,6 +49,8 @@ wireguard-tools kompose inetutils + taskwarrior3 + taskwarrior-tui ]; programs.home-manager.enable = true; diff --git a/modules/home-manager/neovim/nvim/lua/plugins/lsp.lua b/modules/home-manager/neovim/nvim/lua/plugins/lsp.lua index a7c1e88..5c7729d 100644 --- a/modules/home-manager/neovim/nvim/lua/plugins/lsp.lua +++ b/modules/home-manager/neovim/nvim/lua/plugins/lsp.lua @@ -97,5 +97,7 @@ return { root_dir = lsp.util.root_pattern('tailwind.config.js', 'tailwind.config.cjs', 'tailwind.config.mjs', 'tailwind.config.ts') }) + -- go + lsp.gopls.setup({}) end, }