1
Fork 0
dots/nvim/lua/plugins.lua

59 lines
1.1 KiB
Lua
Raw Normal View History

2023-08-21 09:56:16 +00:00
return {
{
"ellisonleao/gruvbox.nvim",
config = function()
vim.cmd.colorscheme("gruvbox")
end
},
{
"ggandor/leap.nvim",
config = function()
2023-08-29 02:15:39 +00:00
require("leap").add_default_mappings()
2023-08-21 09:56:16 +00:00
vim.api.nvim_set_hl(0, 'LeapBackdrop', { link = 'Comment' })
end
},
2023-08-29 23:41:29 +00:00
{
"ThePrimeagen/harpoon",
config = function()
require("keymaps").harpoon()
end
},
2023-10-01 23:08:16 +00:00
{
2024-04-19 14:17:03 +00:00
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = "all",
highlight = {
enable = true,
additional_vim_regex_highlighting = false
},
indent = {
enable = true
}
},
main = "nvim-treesitter.configs",
build = ":TSUpdate"
2023-10-01 23:08:16 +00:00
},
2024-10-07 07:03:17 +00:00
{
"abecodes/tabout.nvim",
config = {
ignore_beginning = false
}
},
2023-08-21 09:56:16 +00:00
{ "numToStr/Comment.nvim", config = true },
{ "nvim-lualine/lualine.nvim", config = true },
{ "windwp/nvim-autopairs", config = true },
2024-04-20 23:47:10 +00:00
{"tpope/vim-fugitive", config = require("keymaps").fugitive},
2024-04-19 14:17:03 +00:00
"tpope/vim-repeat",
"tpope/vim-surround",
"tpope/vim-unimpaired",
2023-08-27 04:03:13 +00:00
"fladson/vim-kitty",
2024-05-05 00:57:59 +00:00
"cljoly/minimal-format.nvim"
2023-08-21 09:56:16 +00:00
}