feat(nvim): add leap plugin
This commit is contained in:
parent
79c088ba97
commit
0309b19aa1
1
configs/lazygit/.gitignore
vendored
Normal file
1
configs/lazygit/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
state.yml
|
@ -16,8 +16,6 @@ packer.init({
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
print("eeey")
|
|
||||||
|
|
||||||
return packer.startup(function(use)
|
return packer.startup(function(use)
|
||||||
-- Let packer manage itself
|
-- Let packer manage itself
|
||||||
use("wbthomason/packer.nvim")
|
use("wbthomason/packer.nvim")
|
||||||
@ -75,6 +73,12 @@ return packer.startup(function(use)
|
|||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
use("junegunn/fzf")
|
use("junegunn/fzf")
|
||||||
|
use({ "ggandor/leap.nvim",
|
||||||
|
config = function()
|
||||||
|
local leap = require("leap")
|
||||||
|
leap.add_default_mappings()
|
||||||
|
leap.setup({})
|
||||||
|
end })
|
||||||
use({
|
use({
|
||||||
"nvim-telescope/telescope.nvim",
|
"nvim-telescope/telescope.nvim",
|
||||||
cmd = "Telescope",
|
cmd = "Telescope",
|
||||||
@ -93,7 +97,7 @@ return packer.startup(function(use)
|
|||||||
use("williamboman/mason-lspconfig.nvim")
|
use("williamboman/mason-lspconfig.nvim")
|
||||||
use("jose-elias-alvarez/null-ls.nvim")
|
use("jose-elias-alvarez/null-ls.nvim")
|
||||||
use("folke/lsp-colors.nvim")
|
use("folke/lsp-colors.nvim")
|
||||||
use("kosayoda/nvim-lightbulb")
|
-- use("kosayoda/nvim-lightbulb")
|
||||||
use({
|
use({
|
||||||
"folke/trouble.nvim",
|
"folke/trouble.nvim",
|
||||||
event = "BufRead",
|
event = "BufRead",
|
||||||
@ -185,6 +189,7 @@ return packer.startup(function(use)
|
|||||||
--------------------
|
--------------------
|
||||||
-- IDE Type Stuff --
|
-- IDE Type Stuff --
|
||||||
--------------------
|
--------------------
|
||||||
|
use("ThePrimeagen/vim-be-good")
|
||||||
|
|
||||||
-- Dap Debugger -- Have not yet been able to set this up
|
-- Dap Debugger -- Have not yet been able to set this up
|
||||||
-- use({ "mfussenegger/nvim-dap" })
|
-- use({ "mfussenegger/nvim-dap" })
|
||||||
@ -202,7 +207,7 @@ return packer.startup(function(use)
|
|||||||
"uga-rosa/translate.nvim",
|
"uga-rosa/translate.nvim",
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
config = function()
|
config = function()
|
||||||
require("translate").setup({ default = { command = "deepl_free", output = "replace" } })
|
require("translate").setup({ default = { output = "replace" } })
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
use({
|
use({
|
||||||
|
Loading…
Reference in New Issue
Block a user