More updateeeeeee

This commit is contained in:
Antoine Phan
2025-07-07 19:08:17 -04:00
parent fae6c7cb03
commit 7c0c3d75c4
3 changed files with 13 additions and 2 deletions

View File

@@ -301,7 +301,7 @@ binds {
Mod+Return { spawn "alacritty"; } Mod+Return { spawn "alacritty"; }
Mod+D { spawn "wofi"; } Mod+D { spawn "wofi"; }
Mod+Shift+L { spawn "swaylock"; } Mod+Shift+L { spawn "swaylock"; }
Mod+E { spawn "nautilus"; } Mod+E { spawn "nemo"; }
// You can also use a shell. Do this if you need pipes, multiple commands, etc. // You can also use a shell. Do this if you need pipes, multiple commands, etc.
// Note: the entire command goes as a single argument in the end. // Note: the entire command goes as a single argument in the end.

View File

@@ -36,6 +36,8 @@ Plug 'preservim/nerdtree'
" Plug 'airblade/vim-gitgutter' " Plug 'airblade/vim-gitgutter'
Plug 'preservim/nerdtree' Plug 'preservim/nerdtree'
" Plug 'ryanoasis/vim-devicons' " Plug 'ryanoasis/vim-devicons'
Plug 'godlygeek/tabular'
Plug 'preservim/vim-markdown'
call plug#end() call plug#end()

View File

@@ -62,7 +62,7 @@ plugins=(
archlinux archlinux
sudo sudo
tmux tmux
arduino-cli kubectl
) )
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh
@@ -153,3 +153,12 @@ alias bruh="echo 'bruh' | cowsay"
# source /usr/share/nvm/init-nvm.sh # source /usr/share/nvm/init-nvm.sh
alias ip="ip --color" alias ip="ip --color"
# Aliases for bun (bun.sh)
alias brd="bun run dev"
alias bi="bun install"
alias ba="bun add"
alias brb="bun run build"
alias brp="bun run preview"