This commit is contained in:
EvilMuffinHa 2022-02-15 16:08:17 -05:00
parent 6d8ee538dd
commit e7f6ed54fb
3 changed files with 5 additions and 1 deletions

View File

@ -61,6 +61,7 @@ bspc config presel_feedback_color "$color04"
# set window rules
bspc rule -a feh state=floating
bspc rule -a mpv state=floating
bspc rule -a Zathura state=tiled
bspc rule -a discord desktop='8'
bspc rule -a helvum desktop='9' focus=on follow=on state=floating
bspc rule -a Pavucontrol desktop='9' focus=on follow=on state=floating

View File

@ -9,6 +9,7 @@ o.relativenumber = true
o.clipboard = "unnamedplus"
o.viminfo = ""
-- why viminfo not work
o.expandtab = true
o.tabstop = 4
o.viminfo = ''
vim.g.base16colorspace = 256

View File

@ -112,7 +112,8 @@ return require('packer').startup({function(use)
'lervag/vimtex',
config = function()
vim.g.vimtex_view_general_viewer = 'zathura'
vim.g.vimtex_view_general_options = '--unique file:@pdf\\#src:@line@tex'
-- vim.g.vimtex_view_general_options = = '-x nvim -n -c "Vimtex'
-- 'file:@pdf\\#src:@line@tex'
vim.g.vimtex_quickfix_enabled = 0
vim.g.Tex_GotoError = 0
vim.g.Tex_ShowErrorContext = 0
@ -130,6 +131,7 @@ return require('packer').startup({function(use)
vim.g.mkdp_highlight_css = os.getenv("HOME") .. "/.cache/wal/colors.css"
end
}
if bootstrap.is_bootstrap then
require('packer').sync()
end