Fix nvim setup and add custom plugins
This commit is contained in:
parent
6465996cfe
commit
4a882c7d6c
3 changed files with 62 additions and 27 deletions
|
|
@ -169,7 +169,7 @@ require('lazy').setup({
|
|||
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
|
||||
--
|
||||
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
|
||||
-- { import = 'custom.plugins' },
|
||||
{ import = 'custom.plugins' },
|
||||
}, {})
|
||||
|
||||
-- The line beneath this is called `modeline`. See `:help modeline`
|
||||
|
|
|
|||
|
|
@ -2,4 +2,35 @@
|
|||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {}
|
||||
return {
|
||||
-- underline the word your cursor is on
|
||||
{
|
||||
'echasnovski/mini.cursorword',
|
||||
version = '*',
|
||||
opts = {}
|
||||
},
|
||||
{
|
||||
"aserowy/tmux.nvim",
|
||||
config = function()
|
||||
return require("tmux").setup({
|
||||
copy_sync = {
|
||||
enable = false,
|
||||
},
|
||||
resize = {
|
||||
enable_default_keybindings = true,
|
||||
resize_step_x = 50,
|
||||
resize_step_y = 10,
|
||||
}
|
||||
})
|
||||
end
|
||||
},
|
||||
{
|
||||
'ThePrimeagen/harpoon', -- Enhance marks
|
||||
dependencies = {
|
||||
-- requires to work
|
||||
'nvim-lua/plenary.nvim'
|
||||
}
|
||||
},
|
||||
'ojroques/nvim-osc52',
|
||||
'szw/vim-maximizer'
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue