remove many color themes, sls plugins, set theme to gruvbox
This commit is contained in:
parent
90dd454704
commit
0936309a92
3 changed files with 9 additions and 17 deletions
|
@ -15,7 +15,8 @@ ENV NEOVIM_PKGS="\
|
||||||
ShellCheck \
|
ShellCheck \
|
||||||
tree-sitter-cli \
|
tree-sitter-cli \
|
||||||
wl-clipboard \
|
wl-clipboard \
|
||||||
python3-neovim"
|
python3-neovim \
|
||||||
|
ansible-config"
|
||||||
|
|
||||||
ENV GENERAL_PKGS="\
|
ENV GENERAL_PKGS="\
|
||||||
bash-completion \
|
bash-completion \
|
||||||
|
|
|
@ -76,5 +76,6 @@ vim.opt.expandtab = true -- converts tabs to white space
|
||||||
vim.opt.shiftwidth = 4 -- width for autoindents
|
vim.opt.shiftwidth = 4 -- width for autoindents
|
||||||
vim.cmd [[
|
vim.cmd [[
|
||||||
highlight clear
|
highlight clear
|
||||||
colorscheme dracula
|
colorscheme gruvbox
|
||||||
|
autocmd BufNewFile,BufRead *.sls set syntax=yaml.jinja2
|
||||||
]]
|
]]
|
||||||
|
|
|
@ -42,7 +42,6 @@ require("lazy").setup({
|
||||||
{ 'hrsh7th/cmp-buffer' },
|
{ 'hrsh7th/cmp-buffer' },
|
||||||
{ 'hrsh7th/cmp-cmdline' },
|
{ 'hrsh7th/cmp-cmdline' },
|
||||||
{ 'hrsh7th/cmp-path' },
|
{ 'hrsh7th/cmp-path' },
|
||||||
{ 'FractalBoy/perl-language-server' },
|
|
||||||
{
|
{
|
||||||
'hrsh7th/nvim-cmp',
|
'hrsh7th/nvim-cmp',
|
||||||
config = require('plugins.nvim-cmp').init,
|
config = require('plugins.nvim-cmp').init,
|
||||||
|
@ -129,9 +128,9 @@ require("lazy").setup({
|
||||||
opts = require('plugins.neogit').config
|
opts = require('plugins.neogit').config
|
||||||
},
|
},
|
||||||
|
|
||||||
{ 'Glench/Vim-Jinja2-Syntax', priority = 15 },
|
--{ 'Glench/Vim-Jinja2-Syntax', priority = 15 },
|
||||||
{ 'vmware-archive/salt-vim', priority = 10 },
|
--{ 'vmware-archive/salt-vim', priority = 10 },
|
||||||
{ 'stephpy/vim-yaml' }, -- for proper sls syntax highlighting when jinja
|
--{ 'stephpy/vim-yaml' }, -- for proper sls syntax highlighting when jinja
|
||||||
{
|
{
|
||||||
'lukas-reineke/indent-blankline.nvim',
|
'lukas-reineke/indent-blankline.nvim',
|
||||||
main = "ibl",
|
main = "ibl",
|
||||||
|
@ -160,19 +159,10 @@ require("lazy").setup({
|
||||||
{ 'sheerun/vim-polyglot' },
|
{ 'sheerun/vim-polyglot' },
|
||||||
|
|
||||||
-- themes
|
-- themes
|
||||||
{ 'olimorris/onedarkpro.nvim' },
|
|
||||||
{ 'ellisonleao/gruvbox.nvim' },
|
|
||||||
{
|
{
|
||||||
'Mofiqul/dracula.nvim',
|
'Mofiqul/dracula.nvim',
|
||||||
priority = 300
|
|
||||||
},
|
},
|
||||||
{ 'vigoux/oak' },
|
{ "ellisonleao/gruvbox.nvim", priority = 1000, config = true },
|
||||||
{ 'NLKNguyen/papercolor-theme' },
|
|
||||||
{ 'bluz71/vim-moonfly-colors' },
|
|
||||||
{ 'luisiacc/gruvbox-baby' },
|
|
||||||
{ 'catppuccin/nvim' },
|
|
||||||
{ 'EdenEast/nightfox.nvim' },
|
|
||||||
{ 'projekt0n/github-nvim-theme' },
|
|
||||||
|
|
||||||
--Fuzzy search by Telescope and its dependencies:
|
--Fuzzy search by Telescope and its dependencies:
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue