idk
This commit is contained in:
parent
17ee7925e0
commit
cd0acc3b07
|
@ -1,5 +1,5 @@
|
||||||
window:
|
window:
|
||||||
opacity: 1.0
|
opacity: 0.8
|
||||||
|
|
||||||
font:
|
font:
|
||||||
size: 12
|
size: 12
|
||||||
|
|
|
@ -19,4 +19,7 @@ require('dap-python').setup('~/.virtualenvs/debugpy/bin/python')
|
||||||
|
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
vim.cmd.colorscheme 'ayu'
|
vim.cmd.colorscheme 'ayu'
|
||||||
|
vim.cmd("highlight Normal guibg=none")
|
||||||
|
vim.cmd("highlight NonText guibg=none")
|
||||||
|
vim.cmd("highlight Normal ctermbg=none")
|
||||||
|
vim.cmd("highlight NonText ctermbg=none")
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
require('lualine').setup {
|
require('lualine').setup {
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = true,
|
icons_enabled = true,
|
||||||
-- theme = 'auto',
|
theme = 'auto',
|
||||||
theme = 'gruvbox',
|
-- theme = 'gruvbox',
|
||||||
component_separators = { left = '', right = '' },
|
component_separators = { left = '', right = '' },
|
||||||
section_separators = { left = '', right = '' },
|
section_separators = { left = '', right = '' },
|
||||||
disabled_filetypes = {
|
disabled_filetypes = {
|
||||||
|
@ -39,5 +39,5 @@ require('lualine').setup {
|
||||||
},
|
},
|
||||||
winbar = {},
|
winbar = {},
|
||||||
inactive_winbar = {},
|
inactive_winbar = {},
|
||||||
extensions = {}
|
extensions = {'lazy'}
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,7 +64,7 @@ return {
|
||||||
untracked = { hl = 'GitSignsAdd', text = '┆', numhl = 'GitSignsAddNr', linehl = 'GitSignsAddLn' },
|
untracked = { hl = 'GitSignsAdd', text = '┆', numhl = 'GitSignsAddNr', linehl = 'GitSignsAddLn' },
|
||||||
},
|
},
|
||||||
current_line_blame = true,
|
current_line_blame = true,
|
||||||
show_deleted = true,
|
-- show_deleted = true,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -159,6 +159,7 @@ return {
|
||||||
config =
|
config =
|
||||||
{
|
{
|
||||||
char = "",
|
char = "",
|
||||||
|
space_char_blankline = " ",
|
||||||
show_current_context = true,
|
show_current_context = true,
|
||||||
show_current_context_start = true,
|
show_current_context_start = true,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue