p10k fixes
This commit is contained in:
parent
482ac00839
commit
3183d4ac1a
2
.gitignore
vendored
2
.gitignore
vendored
@ -2,3 +2,5 @@
|
||||
vim/bundle/
|
||||
tags*
|
||||
.netrwhist
|
||||
|
||||
home/bin/subl
|
||||
|
@ -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
1689
home/p10k.zsh
Normal file
File diff suppressed because it is too large
Load Diff
@ -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)'
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user