diff --git a/config/default.nix b/config/default.nix index 78f0bd9..7b5b384 100644 --- a/config/default.nix +++ b/config/default.nix @@ -18,6 +18,7 @@ ./plugins/ui/lualine.nix ./plugins/ui/neo-tree.nix ./plugins/ui/web-devicons.nix + ./plugins/ui/whichkey.nix # LSP and formatting ./plugins/lsp/conform.nix @@ -34,6 +35,5 @@ ./plugins/utils/telescope.nix ./plugins/utils/todo-comments.nix ./plugins/utils/vimtex.nix - ./plugins/utils/whichkey.nix ]; } diff --git a/config/plugins/utils/whichkey.nix b/config/plugins/ui/whichkey.nix similarity index 94% rename from config/plugins/utils/whichkey.nix rename to config/plugins/ui/whichkey.nix index d88365d..27c4f9e 100644 --- a/config/plugins/utils/whichkey.nix +++ b/config/plugins/ui/whichkey.nix @@ -1,6 +1,9 @@ {...}: { plugins.which-key = { enable = true; + settings = { + preset = "modern"; + }; }; # Prefixes, No operation. diff --git a/config/plugins/utils/software-licenses.nix b/config/plugins/utils/software-licenses.nix deleted file mode 100644 index 3ddc586..0000000 --- a/config/plugins/utils/software-licenses.nix +++ /dev/null @@ -1,13 +0,0 @@ -{pkgs, ...}: { - extraPlugins = [ - (pkgs.vimUtils.buildVimPlugin { - name = "software-licenses"; - src = pkgs.fetchFromGitHub { - owner = "chip"; - repo = "telescope-software-licenses.nvim"; - rev = "fb5fc33"; - hash = "sha256-luyCjkZSm1F6qoRpP5hHRAx4632u6JFuX2s7m2s8y60="; - }; - }) - ]; -} diff --git a/config/plugins/utils/telescope.nix b/config/plugins/utils/telescope.nix index 0ba7de2..9002a02 100644 --- a/config/plugins/utils/telescope.nix +++ b/config/plugins/utils/telescope.nix @@ -1,8 +1,4 @@ {...}: { - imports = [ - ./software-licenses.nix # View common software licenses. - ]; - plugins.telescope = { enable = true; @@ -48,12 +44,6 @@ desc = "Search project files"; }; }; - "sl" = { - action = "software-licenses find"; - options = { - desc = "Search Software Licenses"; - }; - }; # List "glc" = {