use astratheme
This commit is contained in:
parent
bb792a23c8
commit
a10d5bccf4
32
lua/plugins/astrodark.lua
Normal file
32
lua/plugins/astrodark.lua
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
return {
|
||||||
|
'AstroNvim/astrotheme',
|
||||||
|
lazy = false,
|
||||||
|
priority = 1000,
|
||||||
|
config = function()
|
||||||
|
require('astrotheme').setup({
|
||||||
|
palette = 'astrodark', -- String of the default palette to use when calling `:colorscheme astrotheme`
|
||||||
|
|
||||||
|
termguicolors = true, -- Bool value, toggles if termguicolors are set by AstroTheme.
|
||||||
|
|
||||||
|
terminal_color = true, -- Bool value, toggles if terminal_colors are set by AstroTheme.
|
||||||
|
|
||||||
|
plugin_default = 'auto', -- Sets how all plugins will be loaded
|
||||||
|
-- "auto": Uses lazy / packer enabled plugins to load highlights.
|
||||||
|
-- true: Enables all plugins highlights.
|
||||||
|
-- false: Disables all plugins.
|
||||||
|
|
||||||
|
plugins = { -- Allows for individual plugin overides using plugin name and value from above.
|
||||||
|
-- ['lualine'] = true,
|
||||||
|
},
|
||||||
|
|
||||||
|
palettes = {
|
||||||
|
global = {
|
||||||
|
},
|
||||||
|
astrodark = {
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
vim.cmd('colorscheme astrodark')
|
||||||
|
end,
|
||||||
|
enabled = true
|
||||||
|
}
|
@ -96,5 +96,6 @@ return
|
|||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
vim.cmd('colorscheme catppuccin')
|
vim.cmd('colorscheme catppuccin')
|
||||||
end
|
end,
|
||||||
|
enabled = false
|
||||||
}
|
}
|
||||||
|
@ -2,20 +2,9 @@ return {
|
|||||||
'nvim-lualine/lualine.nvim',
|
'nvim-lualine/lualine.nvim',
|
||||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||||
config = function()
|
config = function()
|
||||||
local custom_gruvbox = require 'lualine.themes.gruvbox_dark'
|
|
||||||
|
|
||||||
-- Change the background of lualine_c section for normal mode
|
|
||||||
custom_gruvbox.normal.a.bg = '#282828'
|
|
||||||
custom_gruvbox.normal.b.bg = '#282828'
|
|
||||||
custom_gruvbox.normal.c.bg = '#282828'
|
|
||||||
-- custom_gruvbox.normal.a.fg = '#282828'
|
|
||||||
-- custom_gruvbox.normal.b.fg = '#282828'
|
|
||||||
-- custom_gruvbox.normal.c.fg = '#282828'
|
|
||||||
|
|
||||||
require('lualine').setup {
|
require('lualine').setup {
|
||||||
options = {
|
options = {
|
||||||
-- theme = custom_gruvbox,
|
theme = 'material',
|
||||||
theme = 'catppuccin',
|
|
||||||
disabled_filetypes = {
|
disabled_filetypes = {
|
||||||
statusline = {},
|
statusline = {},
|
||||||
winbar = { 'dap-repl', 'dapui_console' },
|
winbar = { 'dap-repl', 'dapui_console' },
|
||||||
@ -59,21 +48,14 @@ return {
|
|||||||
path = 0,
|
path = 0,
|
||||||
file_status = true,
|
file_status = true,
|
||||||
separator = { left = '', right = '' },
|
separator = { left = '', right = '' },
|
||||||
-- color = { fg = '#ffaa88', gui = 'bold' }
|
|
||||||
color = { fg = '#ffaa88', bg = '#282828', gui = 'bold' }
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
lualine_b = {
|
lualine_b = {
|
||||||
{
|
{
|
||||||
'filesize',
|
'filesize',
|
||||||
color = { bg = '#282828' }
|
},
|
||||||
}
|
|
||||||
},
|
},
|
||||||
lualine_c = {
|
lualine_c = {
|
||||||
{
|
|
||||||
'aerial',
|
|
||||||
color = { fg = '#ebdbb2', bg = '#282828', gui = 'bold' }
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
lualine_x = {},
|
lualine_x = {},
|
||||||
lualine_y = {},
|
lualine_y = {},
|
||||||
@ -87,18 +69,14 @@ return {
|
|||||||
path = 0,
|
path = 0,
|
||||||
file_status = true,
|
file_status = true,
|
||||||
separator = { left = '', right = '' },
|
separator = { left = '', right = '' },
|
||||||
color = { fg = '#ffaa88', bg = '#282828', gui = 'bold' }
|
|
||||||
-- color = { fg = '#ffaa88', bg = 'grey', gui = 'italic,bold' }
|
|
||||||
-- color = { fg = '#ff1111'}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
lualine_b = {
|
lualine_b = {
|
||||||
{
|
{
|
||||||
'filesize',
|
'filesize',
|
||||||
color = { bg = '#282828' }
|
},
|
||||||
}
|
|
||||||
},
|
},
|
||||||
lualine_c = { 'aerial' },
|
lualine_c = {},
|
||||||
lualine_x = {},
|
lualine_x = {},
|
||||||
lualine_y = {},
|
lualine_y = {},
|
||||||
lualine_z = {}
|
lualine_z = {}
|
||||||
@ -110,11 +88,6 @@ return {
|
|||||||
{
|
{
|
||||||
'tabs',
|
'tabs',
|
||||||
mode = 2,
|
mode = 2,
|
||||||
tabs_color = {
|
|
||||||
-- Same values as the general color option can be used here.
|
|
||||||
active = 'lualine_a_normal', -- Color for active tab.
|
|
||||||
inactive = 'lualine_a_inactive', -- Color for inactive tab.
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
lualine_x = {},
|
lualine_x = {},
|
||||||
@ -122,5 +95,5 @@ return {
|
|||||||
lualine_z = {}
|
lualine_z = {}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
end
|
end,
|
||||||
}
|
}
|
||||||
|
@ -58,5 +58,6 @@ return {
|
|||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
vim.cmd('colorscheme monokai-pro')
|
vim.cmd('colorscheme monokai-pro')
|
||||||
end
|
end,
|
||||||
|
enabled = false
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user