mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 16:57:54 +00:00
28 lines
523 B
Lua
28 lines
523 B
Lua
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
|
|
{
|
|
"rktjmp/lush.nvim",
|
|
priority = 1000,
|
|
module = true,
|
|
config = function()
|
|
vim.cmd("colorscheme fds-theme")
|
|
end,
|
|
},
|
|
|
|
-- More useful status bar
|
|
"vim-airline/vim-airline",
|
|
|
|
-- Colorize common color strings
|
|
{
|
|
"norcalli/nvim-colorizer.lua",
|
|
config = true,
|
|
}
|
|
}
|