Compare commits
1 Commits
v1.0
...
b1435388ae
| Author | SHA1 | Date | |
|---|---|---|---|
| b1435388ae |
@@ -4,7 +4,7 @@ local wezterm = require("wezterm")
|
|||||||
-- This will hold the configuration
|
-- This will hold the configuration
|
||||||
local config = wezterm.config_builder()
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
config.color_scheme = 'tokyonight_storm'
|
config.color_scheme = "tokyonight_storm"
|
||||||
config.window_background_opacity = 0.95
|
config.window_background_opacity = 0.95
|
||||||
config.enable_tab_bar = false
|
config.enable_tab_bar = false
|
||||||
config.initial_cols = 205
|
config.initial_cols = 205
|
||||||
|
|||||||
@@ -14,12 +14,40 @@ alias la="lsd -lah"
|
|||||||
# Replace cat with bat
|
# Replace cat with bat
|
||||||
alias cat="bat"
|
alias cat="bat"
|
||||||
|
|
||||||
|
# Alias cd to z for zoxide
|
||||||
|
alias cd="z"
|
||||||
|
|
||||||
############### END ALIASES ###############
|
############### END ALIASES ###############
|
||||||
|
|
||||||
|
############### BEGIN EXPORTS #############
|
||||||
|
|
||||||
|
# Exporting $HOME/.local/bin for Zed
|
||||||
|
export PATH=$HOME/.local/bin:$PATH
|
||||||
|
|
||||||
|
# Export my local-progs directory to find executables
|
||||||
|
export PATH=$HOME/local-progs/:$PATH
|
||||||
|
|
||||||
|
# Pre-configure settings for zsh-vi-mode
|
||||||
|
function zvm_config() {
|
||||||
|
ZVM_CURSOR_STYLE_ENABLED=false
|
||||||
|
ZVM_VI_EDITOR=nvim
|
||||||
|
}
|
||||||
|
|
||||||
|
############### END EXPORTS ###############
|
||||||
|
|
||||||
# Add in our fzf integrations for zsh
|
# Add in our fzf integrations for zsh
|
||||||
# Comment if you don't want the fzf integration
|
# Comment if you don't want the fzf integration
|
||||||
source <(fzf --zsh)
|
source <(fzf --zsh)
|
||||||
|
|
||||||
|
# Enable vi mode for zsh
|
||||||
|
source $HOME/local-progs/zsh-vi-mode/zsh-vi-mode.plugin.zsh
|
||||||
|
|
||||||
|
# We want to make sure that autocompletions are loaded
|
||||||
|
autoload -Uz compinit && compinit
|
||||||
|
|
||||||
|
# Initialize zoxide
|
||||||
|
eval "$(zoxide init zsh)"
|
||||||
|
|
||||||
# Finally we want to use starship for our prompt
|
# Finally we want to use starship for our prompt
|
||||||
# (because rust that's why)
|
# (because rust that's why)
|
||||||
eval "$(starship init zsh)"
|
eval "$(starship init zsh)"
|
||||||
|
|||||||
Reference in New Issue
Block a user