diff --git a/hosts/macbook/home.nix b/hosts/macbook/home.nix index cfecff6..53416b1 100644 --- a/hosts/macbook/home.nix +++ b/hosts/macbook/home.nix @@ -31,6 +31,9 @@ spotify-player = { enable = true; }; + java = { + enable = true; + }; }; home.packages = with pkgs; [ @@ -61,6 +64,7 @@ gcc keepassxc luajit + qemu ]; 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 8e847c9..9e7d6f7 100644 --- a/modules/home-manager/neovim/nvim/lua/plugins/lsp.lua +++ b/modules/home-manager/neovim/nvim/lua/plugins/lsp.lua @@ -108,6 +108,9 @@ return { lsp.cssls.setup({ capabilities = capabilities, }) + lsp.jdtls.setup({ + capabilities = capabilities, + }) end, }, { diff --git a/modules/home-manager/neovim/nvim/lua/plugins/mini.lua b/modules/home-manager/neovim/nvim/lua/plugins/mini.lua index 0cb45c4..7c8aab0 100644 --- a/modules/home-manager/neovim/nvim/lua/plugins/mini.lua +++ b/modules/home-manager/neovim/nvim/lua/plugins/mini.lua @@ -99,13 +99,13 @@ return { -- Collection of various small independent plugins/modules -- } -- }) -- - -- require('mini.hues').setup({ - -- foreground = '#fbf7f0', - -- background = '#000000', - -- n_hues = 4, - -- accent = 'bg', - -- saturation = 'high' - -- }) + require('mini.hues').setup({ + foreground = '#ffffff', + background = '#000000', + n_hues = 0, + accent = 'orange', + saturation = 'high' + }) require('mini.splitjoin').setup() diff --git a/modules/home-manager/neovim/nvim/lua/plugins/oxocarbon.lua b/modules/home-manager/neovim/nvim/lua/plugins/oxocarbon.lua deleted file mode 100644 index 7b23677..0000000 --- a/modules/home-manager/neovim/nvim/lua/plugins/oxocarbon.lua +++ /dev/null @@ -1,7 +0,0 @@ -return { - "shatur/neovim-ayu", - config = function() - require('ayu').setup({}) - vim.cmd.colorscheme "ayu" - end -}