neovide, kitty, wezterm: fonts again, zsh: vars
This commit is contained in:
parent
4be0338156
commit
6bd35000b7
5 changed files with 5 additions and 5 deletions
|
@ -23,7 +23,7 @@ require('lazy').setup {
|
||||||
--[[ plugin configs and maps ]]
|
--[[ plugin configs and maps ]]
|
||||||
require('gitsigns').setup()
|
require('gitsigns').setup()
|
||||||
require('gruvbox').setup {
|
require('gruvbox').setup {
|
||||||
terminal_colors = false
|
terminal_colors = true
|
||||||
}
|
}
|
||||||
require('orgmode').setup {
|
require('orgmode').setup {
|
||||||
org_agenda_files = '~/orgfiles/**/*',
|
org_agenda_files = '~/orgfiles/**/*',
|
||||||
|
|
|
@ -27,4 +27,4 @@ vim.o.imsearch = 0
|
||||||
|
|
||||||
local fsize = '11'
|
local fsize = '11'
|
||||||
if vim.loop.os_uname().sysname == 'Darwin' then fsize = '14' end
|
if vim.loop.os_uname().sysname == 'Darwin' then fsize = '14' end
|
||||||
vim.o.guifont = 'Cascadia Mono NF:h' .. fsize
|
vim.o.guifont = 'Cascadia Mono PL:h' .. fsize
|
||||||
|
|
|
@ -9,7 +9,7 @@ HISTFILE=$HOME/.histfile.$UID
|
||||||
|
|
||||||
export LESS='i M R'
|
export LESS='i M R'
|
||||||
export PAGER=less
|
export PAGER=less
|
||||||
export EDITOR=vim
|
export EDITOR=nvim
|
||||||
export TIME_STYLE=long-iso
|
export TIME_STYLE=long-iso
|
||||||
export SSH_AUTH_SOCK="$HOME/.ssh/ssh_auth_sock"
|
export SSH_AUTH_SOCK="$HOME/.ssh/ssh_auth_sock"
|
||||||
export ALTERNATE_EDITOR=
|
export ALTERNATE_EDITOR=
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Use Ctrl+Alt+F5 to reload
|
# Use Ctrl+Alt+F5 to reload
|
||||||
font_family Cascadia Mono NF
|
font_family Cascadia Mono PL
|
||||||
modify_font underline_position 1
|
modify_font underline_position 1
|
||||||
font_size 14
|
font_size 14
|
||||||
cursor_blink_interval 0
|
cursor_blink_interval 0
|
||||||
|
|
|
@ -21,7 +21,7 @@ cfg.check_for_updates = false
|
||||||
cfg.harfbuzz_features = nil
|
cfg.harfbuzz_features = nil
|
||||||
cfg.cursor_blink_rate = 0
|
cfg.cursor_blink_rate = 0
|
||||||
cfg.bold_brightens_ansi_colors = false
|
cfg.bold_brightens_ansi_colors = false
|
||||||
cfg.font = wt.font('Cascadia Mono NF')
|
cfg.font = wt.font('Cascadia Mono PL')
|
||||||
cfg.harfbuzz_features = {'ss01', 'ss19', 'ss20'}
|
cfg.harfbuzz_features = {'ss01', 'ss19', 'ss20'}
|
||||||
cfg.font_size = fn.set_by_os{
|
cfg.font_size = fn.set_by_os{
|
||||||
Darwin = 14,
|
Darwin = 14,
|
||||||
|
|
Loading…
Reference in a new issue