diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-05-21 18:10:21 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-05-21 18:10:21 +0300 |
commit | b2b543355c03ec24281d05380f92e2e793e511f4 (patch) | |
tree | 26bf76b6da4a16aa9b5dbb9549eadf13144d2594 /.config/nvim/lua/user/plugins.lua | |
parent | 551cd0d2a7a599011393ba39b74e31f25425748c (diff) |
added some changes to neovim config
Diffstat (limited to '.config/nvim/lua/user/plugins.lua')
-rw-r--r-- | .config/nvim/lua/user/plugins.lua | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/.config/nvim/lua/user/plugins.lua b/.config/nvim/lua/user/plugins.lua index 7b7e31d..06b52d1 100644 --- a/.config/nvim/lua/user/plugins.lua +++ b/.config/nvim/lua/user/plugins.lua @@ -4,7 +4,7 @@ plugins = { { "folke/lazy.nvim" }, -- plugin manager - { "nvim-lua/popup.nvim" }, -- some functions for other plugins + { "nvim-lua/popup.nvim" }, -- some functions for other plugin { "nvim-lua/plenary.nvim" }, -- some functions for other plugins { "folke/which-key.nvim" }, -- pretty self-descriptive name @@ -13,6 +13,12 @@ plugins = { { "folke/tokyonight.nvim" }, -- colorschemes + { + "smoka7/multicursors.nvim", + event = "VeryLazy", + dependencies = { 'smoka7/hydra.nvim' }, + cmd = { 'MCstart', 'MCvisual', 'MCclear', 'MCpattern', 'MCvisualPattern', 'MCunderCursor' }, + }, { "tpope/vim-commentary" }, -- gc & gcc for commenting { "preservim/nerdtree" }, -- file explorer { @@ -100,12 +106,18 @@ plugins = { end, }, { - 'akinsho/bufferline.nvim', -- tab & buffer line + "akinsho/bufferline.nvim", -- tab & buffer line version = "*", -- dependencies = 'nvim-tree/nvim-web-devicons' -- for more details on how to configure this plugin in details please see `:h bufferline-configuration` }, --{ "lvimuser/lsp-inlayhints.nvim" } -- saved for the better times + + -- DEBUGGER CONFIGURATION + { + "mfussenegger/nvim-dap", -- the DAP itself + event = { "InsertEnter" }, + }, } @@ -140,3 +152,5 @@ require('blame').setup{ date_format = "%H:%M:%S %Y-%m-%d", merge_consecutive = true, } + +require'multicursors'.setup {} |