more personalized
This commit is contained in:
parent
773e482d4b
commit
1d16292ce9
5 changed files with 118 additions and 11 deletions
10
lua/custom/plugins/cattpuccin.lua
Normal file
10
lua/custom/plugins/cattpuccin.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
return {
|
||||
'catppuccin/nvim',
|
||||
lazy = false,
|
||||
name = 'catppuccin',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
require('catppuccin').setup()
|
||||
vim.cmd.colorscheme 'catppuccin'
|
||||
end,
|
||||
}
|
||||
40
lua/custom/plugins/harpoon.lua
Normal file
40
lua/custom/plugins/harpoon.lua
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
return {
|
||||
'ThePrimeagen/harpoon',
|
||||
branch = 'harpoon2',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||
config = function()
|
||||
local harpoon = require 'harpoon'
|
||||
|
||||
-- REQUIRED
|
||||
harpoon:setup()
|
||||
-- REQUIRED
|
||||
|
||||
vim.keymap.set('n', '<leader>a', function()
|
||||
harpoon:list():append()
|
||||
end)
|
||||
vim.keymap.set('n', '<C-e>', function()
|
||||
harpoon.ui:toggle_quick_menu(harpoon:list())
|
||||
end)
|
||||
|
||||
vim.keymap.set('n', '<C-h>', function()
|
||||
harpoon:list():select(1)
|
||||
end)
|
||||
vim.keymap.set('n', '<C-t>', function()
|
||||
harpoon:list():select(2)
|
||||
end)
|
||||
vim.keymap.set('n', '<C-n>', function()
|
||||
harpoon:list():select(3)
|
||||
end)
|
||||
vim.keymap.set('n', '<C-s>', function()
|
||||
harpoon:list():select(4)
|
||||
end)
|
||||
|
||||
-- Toggle previous & next buffers stored within Harpoon list
|
||||
vim.keymap.set('n', '<C-S-P>', function()
|
||||
harpoon:list():prev()
|
||||
end)
|
||||
vim.keymap.set('n', '<C-S-N>', function()
|
||||
harpoon:list():next()
|
||||
end)
|
||||
end,
|
||||
}
|
||||
|
|
@ -1,5 +1 @@
|
|||
-- You can add your own plugins here or in other files in this directory!
|
||||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {}
|
||||
|
|
|
|||
7
lua/custom/plugins/tailwindcolors.lua
Normal file
7
lua/custom/plugins/tailwindcolors.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
'themaxmarchuk/tailwindcss-colors.nvim',
|
||||
module = 'tailwindcss-colors',
|
||||
config = function()
|
||||
require('tailwindcss-colors').setup()
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue