diff --git a/lua/configs/nvim-lua/lsp-status-nvim/config.lua b/lua/configs/nvim-lua/lsp-status-nvim/config.lua deleted file mode 100644 index 44bcbfae..00000000 --- a/lua/configs/nvim-lua/lsp-status-nvim/config.lua +++ /dev/null @@ -1,9 +0,0 @@ -local lsp_status = require("lsp-status") - -lsp_status.config({ - status_symbol = " [LSP]", -- nf-fa-gear \uf013 - current_function = false, - diagnostics = false, -}) - -lsp_status.register_progress() diff --git a/lua/configs/phaazon/hop-nvim/config.lua b/lua/configs/phaazon/hop-nvim/config.lua deleted file mode 100644 index fefa137a..00000000 --- a/lua/configs/phaazon/hop-nvim/config.lua +++ /dev/null @@ -1 +0,0 @@ -require("hop").setup() \ No newline at end of file diff --git a/lua/configs/phaazon/hop-nvim/keys.lua b/lua/configs/phaazon/hop-nvim/keys.lua deleted file mode 100644 index 1559dbc0..00000000 --- a/lua/configs/phaazon/hop-nvim/keys.lua +++ /dev/null @@ -1,54 +0,0 @@ -local set_lazy_key = require("builtin.utils.keymap").set_lazy_key - -local M = { - set_lazy_key( - { "n", "x" }, - "f", - "HopChar1AC", - { desc = "Jump forward by {char}" } - ), - set_lazy_key( - { "n", "x" }, - "F", - "HopChar1BC", - { desc = "Jump backward by {char}" } - ), - set_lazy_key( - { "n", "x" }, - "s", - "HopChar2AC", - { desc = "Jump forward by {char}{char}" } - ), - set_lazy_key( - { "n", "x" }, - "S", - "HopChar2BC", - { desc = "Jump backward by {char}{char}" } - ), - set_lazy_key( - { "n", "x" }, - "j", - "HopLineAC", - { desc = "Jump to below lines" } - ), - set_lazy_key( - { "n", "x" }, - "k", - "HopLineBC", - { desc = "Jump to above lines" } - ), - set_lazy_key( - { "n", "x" }, - "h", - "HopChar1CurrentLineBC", - { desc = "Jump to left" } - ), - set_lazy_key( - { "n", "x" }, - "l", - "HopChar1CurrentLineAC", - { desc = "Jump to right" } - ), -} - -return M \ No newline at end of file