limpeza ó desinstalar e cambio de modulo para o gruvbox

This commit is contained in:
serxoz 2023-03-06 13:31:37 +01:00
parent 21988de0f6
commit 2850aa29c2
4 changed files with 10 additions and 9 deletions

View File

@ -1,6 +1,6 @@
require("gruvbox").setup({
gruvbox_contrast_dark = 'hard',
gruvbox_invert_selection = '0',
invert_selection = true,
contrast = "hard", -- can be "hard", "soft" or empty string
})
function ColorMyPencils(color)

View File

@ -1,3 +1,5 @@
#!/bin/sh
rm -rf ~/.local/share/nvim
rm -rf ~/.cache/nvim
rm ~/.config/nvim

View File

@ -1,5 +1,10 @@
#!/bin/sh
rm -rf ~/.local/share/nvim
rm -rf ~/.cache/nvim
rm ~/.config/nvim
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
~/.local/share/nvim/site/pack/packer/start/packer.nvim
ln -s $HOME/dotfiles/nvim $HOME/.config/.

View File

@ -13,13 +13,7 @@ return require('packer').startup(function(use)
requires = { {'nvim-lua/plenary.nvim'} }
}
use({
'gruvbox-community/gruvbox',
as = 'gruvbox',
config = function()
vim.cmd('colorscheme gruvbox')
end
})
use("ellisonleao/gruvbox.nvim")
use({
"folke/trouble.nvim",