added gruvbox-flat
This commit is contained in:
parent
a2f360ddb4
commit
ff7a190162
@ -62,9 +62,14 @@ return require('packer').startup(function()
|
||||
})
|
||||
use({
|
||||
'ellisonleao/gruvbox.nvim',
|
||||
disable = false,
|
||||
disable = true,
|
||||
config = get_setup('gruvbox'),
|
||||
})
|
||||
use({
|
||||
'eddyekofo94/gruvbox-flat.nvim',
|
||||
disable = false,
|
||||
config = get_setup('my_gruvbox_flat')
|
||||
})
|
||||
use({
|
||||
'lukas-reineke/indent-blankline.nvim',
|
||||
requires = {
|
||||
|
@ -1,6 +1,6 @@
|
||||
vim.opt.laststatus = 3
|
||||
require('lualine').setup({
|
||||
options = { theme = 'gruvbox' },
|
||||
options = { theme = 'gruvbox-flat' },
|
||||
sections = { lualine_c = { 'getcwd', { 'filename', path = 1, file_status = true } } },
|
||||
inactive_sections = { lualine_c = { 'getcwd', { 'filename', path = 1, file_status = true } } },
|
||||
globalstatus = true,
|
||||
|
@ -70,13 +70,12 @@ local on_attach = function(client, bufnr)
|
||||
|
||||
-- Set autocommands conditional on server_capabilities
|
||||
if client.server_capabilities.documentHighlightProvider then
|
||||
local colors = require('gruvbox.palette')
|
||||
vim.api.nvim_set_hl(
|
||||
0,
|
||||
"LspReferenceText",
|
||||
{ bold = true,
|
||||
ctermbg = 'red',
|
||||
bg = colors.dark3 }
|
||||
bg = "#5a524c"}
|
||||
)
|
||||
vim.api.nvim_set_hl(
|
||||
0,
|
||||
|
Loading…
x
Reference in New Issue
Block a user