Compare commits

..

2 commits

View file

@ -40,10 +40,10 @@ k("n", "<C-l>", "<C-w>l")
-- Plugins -- Plugins
require("lazy").setup({ require("lazy").setup({
{ "catppuccin/nvim", version = "^v1.11.0", name = "catppuccin", priority = 1000 }, { "catppuccin/nvim", version = "^1.11.0", name = "catppuccin", priority = 1000 },
{ "tpope/vim-abolish", version = "^v1.2" }, { "tpope/vim-abolish", version = "^1.2" },
{ "tpope/vim-commentary", version = "^v1.3" }, { "tpope/vim-commentary", version = "^1.3" },
{ "tpope/vim-repeat", version = "^v1.2" }, { "tpope/vim-repeat", version = "^1.2" },
{ {
"windwp/nvim-autopairs", "windwp/nvim-autopairs",
@ -51,6 +51,7 @@ 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",
@ -60,7 +61,7 @@ require("lazy").setup({
{ {
"nvim-telescope/telescope.nvim", "nvim-telescope/telescope.nvim",
version = "^v0.2.1", version = "^0.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>" },
@ -81,10 +82,10 @@ require("lazy").setup({
{ {
"mason-org/mason-lspconfig.nvim", "mason-org/mason-lspconfig.nvim",
version = "^v2.1.0", version = "^2.1.0",
dependencies = { dependencies = {
{ "mason-org/mason.nvim", version = "^v2.2.1", opts = {} }, { "mason-org/mason.nvim", version = "^2.2.1", opts = {} },
{ "neovim/nvim-lspconfig", version = "^v2.5.0"} { "neovim/nvim-lspconfig", version = "^2.5.0"}
}, },
opts = {}, opts = {},
}, },
@ -98,7 +99,7 @@ require("lazy").setup({
"hrsh7th/cmp-path", "hrsh7th/cmp-path",
{ {
"L3MON4D3/LuaSnip", "L3MON4D3/LuaSnip",
version = "^v2.4.1", version = "^2.4.1",
build = "make install_jsregexp", build = "make install_jsregexp",
}, },
}, },
@ -157,19 +158,6 @@ 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"