p10k fixes

This commit is contained in:
Tyrel Souza 2024-08-13 16:18:43 -04:00
parent 482ac00839
commit 3183d4ac1a
Signed by: tyrel
GPG Key ID: A7042C28F86F5183
5 changed files with 1717 additions and 6 deletions

2
.gitignore vendored
View File

@ -2,3 +2,5 @@
vim/bundle/
tags*
.netrwhist
home/bin/subl

View File

@ -37,6 +37,8 @@ end)
config.set_environment_variables = {
PATH = '/opt/homebrew/bin:' .. os.getenv('PATH')
}
-- FUCK LIGATURES
config.harfbuzz_features = { 'calt=0', 'clig=0', 'liga=0' }
config.color_scheme = 'Jellybeans (Gogh)'
config.font = wezterm.font_with_fallback { 'IosevkaTerm Nerd Font' }
config.font_size = 15
@ -72,14 +74,12 @@ config.keys = {
mods = 'SUPER',
action = wezterm.action.SpawnCommandInNewTab {
cwd = wezterm.home_dir,
args = { 'nvim', wezterm.config_file },
args = { 'nvim', wezterm.home_dir .. '/.config/wezterm/wezterm.lua' },
},
},
}
-- and finally, return the configuration to wezterm
return config

1689
home/p10k.zsh Normal file

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,7 @@ alias cat='bat'
alias cprm='git remote get-url origin | tr -d "\n" | pbcopy'
alias dcomp="docker compose"
alias docker-compose="docker compose"
alias dots='cd ~/code/dotfiles/'
alias dots='cd ~/code/tyrel.dev/dotfiles/'
alias fuckingip="curl https://wtfismyip.com/json"
alias g='git'
alias gcd='cd $(git rev-parse --show-toplevel)'

View File

@ -1,2 +1,22 @@
source /home/tyrel/.shell_aliases
source /home/tyrel/.shell_funcs
source ~/.shell_funcs
source ~/.shell_aliases
export PYENV_ROOT="$HOME/.pyenv"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
export WORKON_HOME=~/rl/_envs/
pyenv virtualenvwrapper
export PATH=/Users/tyrel/bin/:$PATH
source ~/.jobs/redlattice.sh
eval "$(direnv hook zsh)"
export GPG_TTY=$(tty)
eval $(thefuck --alias crap)
export ANDROID_NDK_HOME="$HOMEBREW_PREFIX/share/android-ndk"
eval $(thefuck --alias)
alias lzd='lazydocker'
export BAT_THEME="Dracula"