make statusline transparent

This commit is contained in:
Volodymyr Patuta 2023-01-23 18:56:08 +01:00
parent 68fb1780f3
commit be2a169edc
2 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,7 @@
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = '#282828' })
vim.api.nvim_set_hl(0, 'FloatBorder', { bg = 'NONE' })
vim.api.nvim_set_hl(0, 'Pmenu', { bg = 'NONE' })
vim.api.nvim_set_hl(0, 'StatusLine', { bg = 'NONE' })
-- Use 'q' to quit from common plugins
vim.api.nvim_create_autocmd({ 'FileType' }, {

View File

@ -18,6 +18,8 @@ g.tex_flavor = 'latex'
-- }}}
-- Opts {{{
-- opt.formatoptions = ""
opt.wildoptions = 'tagfile'
--opt.wildchar = 'c'
opt.termguicolors = true
opt.guifont = 'JetBrainsMono Nerd Font'
opt.guicursor = 'n-v-c-sm:hor20,i-ci-ve:ver20,r-cr-o:Block'