Compare commits
No commits in common. "393fc2ae81dbc5f0d31197c2b2eb763af14c9ad9" and "060cb7d30ae9335cdcba3a529a4240915eafe326" have entirely different histories.
393fc2ae81
...
060cb7d30a
1 changed files with 22 additions and 10 deletions
|
|
@ -40,10 +40,10 @@ k("n", "<C-l>", "<C-w>l")
|
||||||
|
|
||||||
-- Plugins
|
-- Plugins
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
{ "catppuccin/nvim", version = "^1.11.0", name = "catppuccin", priority = 1000 },
|
{ "catppuccin/nvim", version = "^v1.11.0", name = "catppuccin", priority = 1000 },
|
||||||
{ "tpope/vim-abolish", version = "^1.2" },
|
{ "tpope/vim-abolish", version = "^v1.2" },
|
||||||
{ "tpope/vim-commentary", version = "^1.3" },
|
{ "tpope/vim-commentary", version = "^v1.3" },
|
||||||
{ "tpope/vim-repeat", version = "^1.2" },
|
{ "tpope/vim-repeat", version = "^v1.2" },
|
||||||
|
|
||||||
{
|
{
|
||||||
"windwp/nvim-autopairs",
|
"windwp/nvim-autopairs",
|
||||||
|
|
@ -51,7 +51,6 @@ require("lazy").setup({
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
config = true,
|
config = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"kylechui/nvim-surround",
|
"kylechui/nvim-surround",
|
||||||
version = "^3.0.0",
|
version = "^3.0.0",
|
||||||
|
|
@ -61,7 +60,7 @@ require("lazy").setup({
|
||||||
|
|
||||||
{
|
{
|
||||||
"nvim-telescope/telescope.nvim",
|
"nvim-telescope/telescope.nvim",
|
||||||
version = "^0.2.1",
|
version = "^v0.2.1",
|
||||||
dependencies = { "nvim-lua/plenary.nvim" },
|
dependencies = { "nvim-lua/plenary.nvim" },
|
||||||
keys = {
|
keys = {
|
||||||
{ "<leader><space>", "<cmd>Telescope find_files<cr>" },
|
{ "<leader><space>", "<cmd>Telescope find_files<cr>" },
|
||||||
|
|
@ -82,10 +81,10 @@ require("lazy").setup({
|
||||||
|
|
||||||
{
|
{
|
||||||
"mason-org/mason-lspconfig.nvim",
|
"mason-org/mason-lspconfig.nvim",
|
||||||
version = "^2.1.0",
|
version = "^v2.1.0",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
{ "mason-org/mason.nvim", version = "^2.2.1", opts = {} },
|
{ "mason-org/mason.nvim", version = "^v2.2.1", opts = {} },
|
||||||
{ "neovim/nvim-lspconfig", version = "^2.5.0"}
|
{ "neovim/nvim-lspconfig", version = "^v2.5.0"}
|
||||||
},
|
},
|
||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
|
|
@ -99,7 +98,7 @@ require("lazy").setup({
|
||||||
"hrsh7th/cmp-path",
|
"hrsh7th/cmp-path",
|
||||||
{
|
{
|
||||||
"L3MON4D3/LuaSnip",
|
"L3MON4D3/LuaSnip",
|
||||||
version = "^2.4.1",
|
version = "^v2.4.1",
|
||||||
build = "make install_jsregexp",
|
build = "make install_jsregexp",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
@ -158,6 +157,19 @@ require("lazy").setup({
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"swaits/zellij-nav.nvim",
|
||||||
|
lazy = true,
|
||||||
|
event = "VeryLazy",
|
||||||
|
keys = {
|
||||||
|
{ "<c-h>", "<cmd>ZellijNavigateLeftTab<cr>", { silent = true, desc = "navigate left or tab" } },
|
||||||
|
{ "<c-j>", "<cmd>ZellijNavigateDown<cr>", { silent = true, desc = "navigate down" } },
|
||||||
|
{ "<c-k>", "<cmd>ZellijNavigateUp<cr>", { silent = true, desc = "navigate up" } },
|
||||||
|
{ "<c-l>", "<cmd>ZellijNavigateRightTab<cr>", { silent = true, desc = "navigate right or tab" } },
|
||||||
|
},
|
||||||
|
opts = {},
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.cmd.colorscheme "catppuccin"
|
vim.cmd.colorscheme "catppuccin"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue