adding bufferline and changing color.lua
This commit is contained in:
parent
28d630d239
commit
3d9da01eb7
|
@ -0,0 +1,11 @@
|
||||||
|
-- return {
|
||||||
|
-- 'akinsho/bufferline.nvim',
|
||||||
|
-- version = "*",
|
||||||
|
-- dependencies = 'nvim-tree/nvim-web-devicons',
|
||||||
|
-- opts = {
|
||||||
|
-- options = {
|
||||||
|
-- mode = "buffers",
|
||||||
|
-- separator_style = "slant",
|
||||||
|
-- }
|
||||||
|
-- }
|
||||||
|
-- }
|
|
@ -1,42 +1,41 @@
|
||||||
return { -- You can easily change to a different colorscheme.
|
return { -- You can easily change to a different colorscheme.
|
||||||
-- Change the name of the colorscheme plugin below, and then
|
-- Change the name of the colorscheme plugin below, and then
|
||||||
-- change the command in the config to whatever the name of that colorscheme is
|
-- change the command in the config to whatever the name of that colorscheme is
|
||||||
--
|
--
|
||||||
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`
|
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`
|
||||||
'ellisonleao/gruvbox.nvim',
|
'ellisonleao/gruvbox.nvim',
|
||||||
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||||
priority = 1000, -- make sure to load this before all the other start plugins
|
priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
opts = {
|
opts = {
|
||||||
terminal_colors = true, -- add neovim terminal colors
|
terminal_colors = true, -- add neovim terminal colors
|
||||||
undercurl = true,
|
undercurl = true,
|
||||||
underline = true,
|
underline = true,
|
||||||
bold = true,
|
bold = true,
|
||||||
italic = {
|
italic = {
|
||||||
strings = true,
|
strings = true,
|
||||||
emphasis = true,
|
emphasis = true,
|
||||||
comments = true,
|
comments = true,
|
||||||
operators = false,
|
operators = false,
|
||||||
folds = true,
|
folds = true,
|
||||||
},
|
|
||||||
strikethrough = true,
|
|
||||||
invert_selection = false,
|
|
||||||
invert_signs = false,
|
|
||||||
invert_tabline = false,
|
|
||||||
invert_intend_guides = false,
|
|
||||||
inverse = true, -- invert background for search, diffs, statuslines and errors
|
|
||||||
contrast = "", -- can be "hard", "soft" or empty string
|
|
||||||
palette_overrides = {},
|
|
||||||
overrides = {},
|
|
||||||
dim_inactive = false,
|
|
||||||
transparent_mode = false,
|
|
||||||
},
|
},
|
||||||
config = function()
|
strikethrough = true,
|
||||||
-- Load the colorscheme here
|
invert_selection = false,
|
||||||
vim.cmd.colorscheme 'gruvbox'
|
invert_signs = false,
|
||||||
vim.o.background = 'dark'
|
invert_tabline = false,
|
||||||
|
invert_intend_guides = false,
|
||||||
-- You can configure highlights by doing something like
|
inverse = true, -- invert background for search, diffs, statuslines and errors
|
||||||
vim.cmd.hi 'Comment gui=none'
|
contrast = "", -- can be "hard", "soft" or empty string
|
||||||
end,
|
palette_overrides = {},
|
||||||
}
|
overrides = {},
|
||||||
|
dim_inactive = false,
|
||||||
|
transparent_mode = false,
|
||||||
|
},
|
||||||
|
init = function()
|
||||||
|
-- Load the colorscheme here
|
||||||
|
vim.cmd.colorscheme 'gruvbox'
|
||||||
|
vim.o.background = 'dark'
|
||||||
|
|
||||||
|
-- You can configure highlights by doing something like
|
||||||
|
vim.cmd.hi 'Comment gui=none'
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue