2023-10-27 11:29:23 +00:00
|
|
|
return {
|
|
|
|
-- Enable visuals for addition/deletion of lines in the gutter (side) similar
|
|
|
|
-- to Visual Studio Code.
|
|
|
|
"airblade/vim-gitgutter",
|
|
|
|
|
|
|
|
-- Base16 support
|
|
|
|
"RRethy/nvim-base16",
|
|
|
|
|
|
|
|
-- Make your Neovim pretty
|
2023-10-28 04:15:22 +00:00
|
|
|
{
|
|
|
|
"rktjmp/lush.nvim",
|
|
|
|
priority = 1000,
|
|
|
|
module = true,
|
|
|
|
config = function()
|
|
|
|
vim.cmd("colorscheme fds-theme")
|
|
|
|
end,
|
|
|
|
},
|
2023-10-27 11:29:23 +00:00
|
|
|
|
|
|
|
-- More useful status bar
|
|
|
|
"vim-airline/vim-airline",
|
|
|
|
|
|
|
|
-- Colorize common color strings
|
|
|
|
{
|
|
|
|
"norcalli/nvim-colorizer.lua",
|
|
|
|
config = true,
|
2023-10-28 04:39:05 +00:00
|
|
|
},
|
2023-10-27 11:29:23 +00:00
|
|
|
}
|