fix tab_bar: explicit conversion of background color to int
This commit is contained in:
parent
d652f6543a
commit
a066b973e1
@ -11,7 +11,7 @@ def draw_tab(
|
||||
left_sep, right_sep = ('', '')
|
||||
|
||||
def draw_sep(which: str) -> None:
|
||||
screen.cursor.bg = draw_data.default_bg
|
||||
screen.cursor.bg = int(draw_data.default_bg)
|
||||
screen.cursor.fg = orig_bg
|
||||
screen.draw(which)
|
||||
screen.cursor.bg = orig_bg
|
||||
|
@ -223,7 +223,7 @@ auto_session.setup({
|
||||
auto_session_nvim_tree.setup(auto_session)
|
||||
|
||||
require('nvim-treesitter.configs').setup {
|
||||
ensure_installed = { 'bash', 'go', 'css', 'python', 'html', 'javascript', 'json', 'jsonc', 'lua', 'rust', 'typescript' },
|
||||
ensure_installed = { 'c','query','vimdoc','vim','bash', 'go', 'css', 'python', 'html', 'javascript', 'json', 'jsonc', 'lua', 'rust', 'typescript' },
|
||||
highlight = {
|
||||
enable = true,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user