-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
73 lines (58 loc) · 1.37 KB
/
.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env bash
# aliases and enviroment variables
fpath=(~/.zsh/ $fpath)
source ~/.alias
source ~/.env
source ~/.functions
# Path to oh-my-zsh installation.
export ZSH="/home/vport/.oh-my-zsh"
HIST_STAMPS="dd/mm/yyyy"
#Plugins
plugins=(
archlinux
fnm
gh
git
gitfast
git-extras
golang
nmap
node
npm
pip
poetry
pyenv
python
rsync
rust
uv
zsh-autosuggestions
zsh-syntax-highlighting
)
source "$ZSH/oh-my-zsh.sh"
source "$HOME/.config/broot/launcher/bash/br"
source "$HOME/.fzf/shell/key-bindings.zsh"
eval "$(starship init zsh)"
eval "$(zoxide init zsh)"
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=50000000
SAVEHIST=50000000
setopt autocd extendedglob
unsetopt beep
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/vport/.zshrc'
autoload -Uz compinit
compinit
alias ls='exa --icons=auto'
source /home/vport/.config/broot/launcher/bash/br
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# ORCA 6.0.0 secion
export PATH=/home/vport/orca_6_0_0:$PATH
fpath+=~/.zfunc; autoload -Uz compinit; compinit
eval "$(uv generate-shell-completion zsh)"