-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_zshrc
50 lines (42 loc) · 1.58 KB
/
dot_zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=10000
SAVEHIST=10000
setopt autocd extendedglob nomatch
unsetopt beep notify
bindkey -v
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/bhaumik/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
export LUA_PATH="/home/bhaumik/.luarocks/share/lua/5.3/?.lua;/home/bhaumik/.luarocks/share/lua/5.3/?/init.lua;;"
export LUA_CPATH="/home/bhaumik/.luarocks/lib/lua/5.3/?.so;;"
export EDITOR=nvim
export VISUAL=nvim
export TERMINAL=kitty
export PATH=$PATH:/usr/local/go/bin
export PATH="$HOME/.local/share/nvim/mason/bin:$PATH"
. "$HOME/.cargo/env"
export PATH=$PATH:/home/bhaumik/bin
export PATH="$HOME/.local/bin:$PATH"
export GTK_THEME=Catppuccin-Dark
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib64/
eval "$(zoxide init zsh)"
eval "$(oh-my-posh init zsh --config ~/assets/command-prompt-ohmyposh/bubbles_custom.omp.json)"
source ~/antigen.zsh
# Load the oh-my-zsh's library.
antigen use oh-my-zsh
# Bundles from the default repo (robbyrussell's oh-my-zsh).
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle jeffreytse/zsh-vi-mode
# Tell Antigen that you're done.
antigen apply
## Aliases
alias width="xdpyinfo | awk '/dimensions/{print $2}' | tr 'x' '\n' | sed -n '2p'"
alias v='nvim' # default Neovim config
alias vp='NVIM_APPNAME=nvim-pckr nvim' # LazyVim
alias vc='NVIM_APPNAME=nvim-custom nvim' # LunarVim
alias peaclock="peaclock --config-dir ~/.config/peaclock"