chore: a few tweaks

This commit is contained in:
Thomas Bishop 2025-07-07 15:46:48 +01:00
parent bf1a1a9ee2
commit cc997771af
4 changed files with 19 additions and 5 deletions

View file

@ -5,8 +5,12 @@ include ./theme.conf
# italic_font PragmataPro Mono Liga Italic # italic_font PragmataPro Mono Liga Italic
# bold_italic_font PragmataPro Mono Liga Bold Italic # bold_italic_font PragmataPro Mono Liga Bold Italic
# font_family Terminess Nerd Font Mono
# bold_font auto
# italic_font auto
# bold_italic_font auto
font_family JetBrainsMono font_family Jetbrains Mono
bold_font auto bold_font auto
italic_font auto italic_font auto
bold_italic_font auto bold_italic_font auto
@ -28,12 +32,13 @@ bold_italic_font auto
font_size 10 font_size 10
# adjust_line_height -1
clipboard_control write-clipboard write-primary read-clipboard-ask read-primary-ask clipboard_control write-clipboard write-primary read-clipboard-ask read-primary-ask
window_padding_width 3 window_padding_width 3
remember_window_size no remember_window_size no
copy_on_select yes copy_on_select yes
background_opacity 0.95 background_opacity 0.9
bell_path /home/thomas/dotfiles/gruvbox-95/sounds/st-terminal-beep.wav bell_path /home/thomas/dotfiles/gruvbox-95/sounds/st-terminal-beep.wav
# startup_session launch.conf # startup_session launch.conf
@ -50,3 +55,11 @@ confirm_os_window_close 0
# inactive_tab_background #000e07 # inactive_tab_background #000e07
# inactive_tab_font_style normal # inactive_tab_font_style normal
# BEGIN_KITTY_FONTS
# font_family family='Terminus (TTF)' postscript_name=TerminusTTF
# bold_font auto
# italic_font auto
# bold_italic_font auto
# END_KITTY_FONTS

View file

@ -6,9 +6,9 @@ return {
-- Optionally configure and load the colorscheme -- Optionally configure and load the colorscheme
-- directly inside the plugin declaration. -- directly inside the plugin declaration.
-- vim.g.gruvbox_material_disable_italic_comment = true vim.g.gruvbox_material_disable_italic_comment = true
vim.g.gruvbox_material_enable_bold = false vim.g.gruvbox_material_enable_bold = false
vim.g.gruvbox_material_enable_italic = false vim.g.gruvbox_material_enable_italic = true
vim.cmd.colorscheme("gruvbox-material") vim.cmd.colorscheme("gruvbox-material")
end, end,
} }

View file

@ -0,0 +1 @@
return { "wakatime/vim-wakatime" }

View file

@ -19,7 +19,7 @@
# PROMPT='%{$fg_bold[green]%}%n@%m%{$reset_color%} %{$fg_bold[magenta]%}%2~$(git_prompt_info)%{$reset_color%}%(.) # PROMPT='%{$fg_bold[green]%}%n@%m%{$reset_color%} %{$fg_bold[magenta]%}%2~$(git_prompt_info)%{$reset_color%}%(.)
# %{$fg[green]%}$%{$reset_color%} ' # %{$fg[green]%}$%{$reset_color%} '
PROMPT='%{$fg_bold[green]%}%n@%m%{$reset_color%} %{$fg_bold[blue]%}%2~%{$reset_color%}$(git_prompt_info)%(.) PROMPT='%{$reset_color%}%{$fg_bold[blue]%}%2~%{$reset_color%}$(git_prompt_info)%(.)
%{$fg[green]%}$%{$reset_color%} ' %{$fg[green]%}$%{$reset_color%} '
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[magenta]%} " ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[magenta]%} "
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"