added Comment

This commit is contained in:
2025-11-12 21:00:13 +01:00
parent 4a5e7b0855
commit f1982a1b58
2 changed files with 53 additions and 13 deletions
+3 -2
View File
@@ -32,7 +32,7 @@ vim.pack.add({
{ src = "https://github.com/mason-org/mason.nvim" }, { src = "https://github.com/mason-org/mason.nvim" },
{ src = "https://github.com/dimitry-ishenko-neovim/lualine-nvim" }, { src = "https://github.com/dimitry-ishenko-neovim/lualine-nvim" },
{ src = "https://github.com/chomosuke/typst-preview.nvim" }, { src = "https://github.com/chomosuke/typst-preview.nvim" },
{ src = "https://github.com/kosayoda/nvim-lightbulb" }, { src = "https://github.com/numToStr/Comment.nvim" },
{ src = "https://codeberg.org/mfussenegger/nvim-jdtls.git", dependencies = { "https://codeberg.org/mfussenegger/nvim-dap.git" } }, { src = "https://codeberg.org/mfussenegger/nvim-jdtls.git", dependencies = { "https://codeberg.org/mfussenegger/nvim-dap.git" } },
{ src = "https://github.com/m4xshen/autoclose.nvim", }, { src = "https://github.com/m4xshen/autoclose.nvim", },
{ src = "https://codeberg.org/mfussenegger/nvim-dap.git" }, { src = "https://codeberg.org/mfussenegger/nvim-dap.git" },
@@ -77,9 +77,10 @@ require("lualine").setup {
} }
} }
require("typst-preview").setup() require("typst-preview").setup()
require("nvim-lightbulb").setup({ autocmd = { enabled = true } })
require("autoclose").setup() require("autoclose").setup()
require("trouble").setup() require("trouble").setup()
require('Comment').setup()
-- PLUGINS END -- -- PLUGINS END --
+50 -11
View File
@@ -1,5 +1,9 @@
{ {
"plugins": { "plugins": {
"Comment.nvim": {
"rev": "e30b7f2",
"src": "https://github.com/numToStr/Comment.nvim"
},
"autoclose.nvim": { "autoclose.nvim": {
"rev": "3f86702", "rev": "3f86702",
"src": "https://github.com/m4xshen/autoclose.nvim" "src": "https://github.com/m4xshen/autoclose.nvim"
@@ -9,29 +13,58 @@
"src": "https://github.com/romgrk/barbar.nvim" "src": "https://github.com/romgrk/barbar.nvim"
}, },
"blink.cmp": { "blink.cmp": {
"rev": "bae4bae",
"src": "https://github.com/Saghen/blink.cmp",
"version": "'v1.6.0'" "version": "'v1.6.0'"
}, },
"gitsigns.nvim": { "gitsigns.nvim": {
"rev": "20ad441", "rev": "20ad441",
"src": "https://github.com/lewis6991/gitsigns.nvim" "src": "https://github.com/lewis6991/gitsigns.nvim"
}, },
"gruvbox.nvim": [], "gruvbox.nvim": {
"lualine-nvim": [], "rev": "5e0a460",
"mason.nvim": [], "src": "https://github.com/ellisonleao/gruvbox.nvim"
"mini.pick": [], },
"nvim-dap": [], "lualine-nvim": {
"rev": "0bf671a",
"src": "https://github.com/dimitry-ishenko-neovim/lualine-nvim"
},
"mason.nvim": {
"rev": "ad7146a",
"src": "https://github.com/mason-org/mason.nvim"
},
"mini.pick": {
"rev": "fe1c25e",
"src": "https://github.com/echasnovski/mini.pick"
},
"nvim-dap": {
"rev": "b38f7d3",
"src": "https://codeberg.org/mfussenegger/nvim-dap.git"
},
"nvim-dap-ui": { "nvim-dap-ui": {
"rev": "cf91d5e", "rev": "cf91d5e",
"src": "https://github.com/rcarriga/nvim-dap-ui" "src": "https://github.com/rcarriga/nvim-dap-ui"
}, },
"nvim-jdtls": [], "nvim-jdtls": {
"nvim-lightbulb": [], "rev": "38d265e",
"nvim-lspconfig": [], "src": "https://codeberg.org/mfussenegger/nvim-jdtls.git"
},
"nvim-lightbulb": {
"rev": "aa3a8b0",
"src": "https://github.com/kosayoda/nvim-lightbulb"
},
"nvim-lspconfig": {
"rev": "c8503e6",
"src": "https://github.com/neovim/nvim-lspconfig"
},
"nvim-nio": { "nvim-nio": {
"rev": "21f5324", "rev": "21f5324",
"src": "https://github.com/nvim-neotest/nvim-nio" "src": "https://github.com/nvim-neotest/nvim-nio"
}, },
"nvim-treesitter": [], "nvim-treesitter": {
"rev": "42fc28ba",
"src": "https://github.com/nvim-treesitter/nvim-treesitter"
},
"nvim-treesitter-textobjects": { "nvim-treesitter-textobjects": {
"rev": "5ca4aaa", "rev": "5ca4aaa",
"src": "https://github.com/nvim-treesitter/nvim-treesitter-textobjects" "src": "https://github.com/nvim-treesitter/nvim-treesitter-textobjects"
@@ -40,11 +73,17 @@
"rev": "8dcb311", "rev": "8dcb311",
"src": "https://github.com/nvim-tree/nvim-web-devicons" "src": "https://github.com/nvim-tree/nvim-web-devicons"
}, },
"oil.nvim": [], "oil.nvim": {
"rev": "7e1cd77",
"src": "https://github.com/stevearc/oil.nvim"
},
"trouble.nvim": { "trouble.nvim": {
"rev": "bd67efe", "rev": "bd67efe",
"src": "https://github.com/folke/trouble.nvim" "src": "https://github.com/folke/trouble.nvim"
}, },
"typst-preview.nvim": [] "typst-preview.nvim": {
"rev": "64469f8",
"src": "https://github.com/chomosuke/typst-preview.nvim"
}
} }
} }