updates
This commit is contained in:
parent
196f2b472c
commit
161403bcc6
@ -24,7 +24,7 @@
|
|||||||
# dynamic width from 0 to 300
|
# dynamic width from 0 to 300
|
||||||
# width = (0, 300)
|
# width = (0, 300)
|
||||||
# constant width of 300
|
# constant width of 300
|
||||||
width = (0,300)
|
width = (0,200)
|
||||||
|
|
||||||
# The maximum height of a single notification, excluding the frame.
|
# The maximum height of a single notification, excluding the frame.
|
||||||
height = 300
|
height = 300
|
||||||
@ -118,7 +118,7 @@
|
|||||||
|
|
||||||
### Text ###
|
### Text ###
|
||||||
|
|
||||||
font = Monospace 8
|
font = Monospace 6
|
||||||
|
|
||||||
# The spacing between lines. If the height is smaller than the
|
# The spacing between lines. If the height is smaller than the
|
||||||
# font height, it will get raised to the font height.
|
# font height, it will get raised to the font height.
|
||||||
|
@ -106,6 +106,7 @@ autocmd("BufNewFile", {
|
|||||||
once = false,
|
once = false,
|
||||||
group = _group,
|
group = _group,
|
||||||
})
|
})
|
||||||
|
|
||||||
autocmd("BufEnter", {
|
autocmd("BufEnter", {
|
||||||
pattern = "*",
|
pattern = "*",
|
||||||
callback = function()
|
callback = function()
|
||||||
@ -152,6 +153,9 @@ autocmd('BufUnload', {
|
|||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
vim.cmd [[autocmd BufEnter *.g :setlocal filetype=gentee]]
|
||||||
|
|
||||||
|
|
||||||
-- auto format on write
|
-- auto format on write
|
||||||
vim.cmd [[autocmd BufWritePre * lua vim.lsp.buf.format()]]
|
vim.cmd [[autocmd BufWritePre * lua vim.lsp.buf.format()]]
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ super + ctrl + alt + m
|
|||||||
|
|
||||||
# file manager
|
# file manager
|
||||||
super + h
|
super + h
|
||||||
pcmanfm
|
nemo
|
||||||
|
|
||||||
# program launcher
|
# program launcher
|
||||||
super + d
|
super + d
|
||||||
|
@ -35,7 +35,7 @@ PATH="$PATH:/usr/local/opt/openjdk/libexec/openjdk.jdk/Contents/Home/bin"
|
|||||||
PATH="$PATH:/home/abs3nt/.nimble/bin"
|
PATH="$PATH:/home/abs3nt/.nimble/bin"
|
||||||
|
|
||||||
# ZSH SETTINGS
|
# ZSH SETTINGS
|
||||||
HISTFILE=$XDG_STATE_HOME/zsh/history
|
export HISTFILE=$XDG_STATE_HOME/zsh/history
|
||||||
HISTSIZE=10000
|
HISTSIZE=10000
|
||||||
SAVEHIST=10000
|
SAVEHIST=10000
|
||||||
setopt appendhistory
|
setopt appendhistory
|
||||||
@ -60,7 +60,6 @@ __git_files () {
|
|||||||
|
|
||||||
# PLUGINS
|
# PLUGINS
|
||||||
zinit ice lucid wait'0'
|
zinit ice lucid wait'0'
|
||||||
zinit light joshskidmore/zsh-fzf-history-search
|
|
||||||
zinit ice depth=1; zinit light romkatv/powerlevel10k
|
zinit ice depth=1; zinit light romkatv/powerlevel10k
|
||||||
zinit light zsh-users/zsh-autosuggestions
|
zinit light zsh-users/zsh-autosuggestions
|
||||||
zinit light zsh-users/zsh-history-substring-search
|
zinit light zsh-users/zsh-history-substring-search
|
||||||
@ -81,16 +80,13 @@ for f in $XDG_CONFIG_HOME/zsh/aliases/*; do source $f; done
|
|||||||
# KEYBINDING
|
# KEYBINDING
|
||||||
bindkey '^[[A' history-substring-search-up
|
bindkey '^[[A' history-substring-search-up
|
||||||
bindkey '^[[B' history-substring-search-down
|
bindkey '^[[B' history-substring-search-down
|
||||||
|
bindkey '^r' _atuin_search_widget
|
||||||
|
|
||||||
# PLUGIN SETTINGS
|
# PLUGIN SETTINGS
|
||||||
HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND=false
|
HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND=false
|
||||||
HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND=false
|
HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND=false
|
||||||
HISTORY_SUBSTRING_SEARCH_ENSURE_UNIQUE=true
|
HISTORY_SUBSTRING_SEARCH_ENSURE_UNIQUE=true
|
||||||
|
|
||||||
export ZSH_FZF_HISTORY_SEARCH_REMOVE_DUPLICATES=1
|
|
||||||
export ZSH_FZF_HISTORY_SEARCH_DATES_IN_SEARCH=0
|
|
||||||
export ZSH_FZF_HISTORY_SEARCH_EVENT_NUMBERS=0
|
|
||||||
|
|
||||||
eval "$(dircolors)"
|
eval "$(dircolors)"
|
||||||
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
|
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
|
||||||
|
|
||||||
@ -102,3 +98,5 @@ if [ -f '/home/abs3nt/Dev/google-cloud-sdk/path.zsh.inc' ]; then . '/home/abs3nt
|
|||||||
|
|
||||||
# The next line enables shell command completion for gcloud.
|
# The next line enables shell command completion for gcloud.
|
||||||
if [ -f '/home/abs3nt/Dev/google-cloud-sdk/completion.zsh.inc' ]; then . '/home/abs3nt/Dev/google-cloud-sdk/completion.zsh.inc'; fi
|
if [ -f '/home/abs3nt/Dev/google-cloud-sdk/completion.zsh.inc' ]; then . '/home/abs3nt/Dev/google-cloud-sdk/completion.zsh.inc'; fi
|
||||||
|
export ATUIN_NOBIND="true"
|
||||||
|
eval "$(atuin init zsh)"
|
||||||
|
@ -9,6 +9,8 @@ alias stern='stern --container-state running,waiting,terminated'
|
|||||||
alias colo='sudo openfortivpn -c ~/.config/openfortivpn/vpn.conf'
|
alias colo='sudo openfortivpn -c ~/.config/openfortivpn/vpn.conf'
|
||||||
alias dots='pacman -Qqe > ~/.local/share/pkglist.txt && yadm add -u && yadm commit -m "updates" && yadm push && yadm log -1 --stat'
|
alias dots='pacman -Qqe > ~/.local/share/pkglist.txt && yadm add -u && yadm commit -m "updates" && yadm push && yadm log -1 --stat'
|
||||||
|
|
||||||
|
alias jq='gojq'
|
||||||
|
|
||||||
alias mkdir='mkdir -pv'
|
alias mkdir='mkdir -pv'
|
||||||
|
|
||||||
alias calc='fend'
|
alias calc='fend'
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
alsa-firmware
|
alsa-firmware
|
||||||
alsa-utils
|
alsa-utils
|
||||||
|
atool
|
||||||
|
atuin
|
||||||
base
|
base
|
||||||
base-devel
|
base-devel
|
||||||
bat
|
bat
|
||||||
@ -8,63 +10,99 @@ betterdiscordctl-git
|
|||||||
bind
|
bind
|
||||||
brave-bin
|
brave-bin
|
||||||
bspwm
|
bspwm
|
||||||
|
catdoc
|
||||||
discord
|
discord
|
||||||
discord-canary
|
discord-canary
|
||||||
dog
|
dog
|
||||||
|
dracula-gtk-theme
|
||||||
duf
|
duf
|
||||||
dunst
|
dunst
|
||||||
efibootmgr
|
efibootmgr
|
||||||
|
elinks
|
||||||
exa
|
exa
|
||||||
feh
|
feh
|
||||||
fend
|
fend
|
||||||
|
ffmpegthumbnailer
|
||||||
flameshot
|
flameshot
|
||||||
fzf
|
fzf
|
||||||
|
gimp
|
||||||
git
|
git
|
||||||
glow
|
glow
|
||||||
|
go
|
||||||
gospt-git
|
gospt-git
|
||||||
gping
|
gping
|
||||||
grub
|
grub
|
||||||
|
highlight
|
||||||
htop
|
htop
|
||||||
intel-media-driver
|
intel-media-driver
|
||||||
jq
|
jdk-openjdk
|
||||||
|
jre-openjdk
|
||||||
|
kimageformats
|
||||||
kubectl
|
kubectl
|
||||||
|
libmythes
|
||||||
|
libreoffice-fresh
|
||||||
linux
|
linux
|
||||||
linux-firmware
|
linux-firmware
|
||||||
|
lrzip
|
||||||
|
lxappearance
|
||||||
ly-git
|
ly-git
|
||||||
|
mediainfo
|
||||||
mosh
|
mosh
|
||||||
nautilus
|
nautilus
|
||||||
|
nemo
|
||||||
|
nemo-fileroller
|
||||||
|
nemo-image-converter
|
||||||
|
neofetch
|
||||||
neovim
|
neovim
|
||||||
networkmanager
|
networkmanager
|
||||||
nitch
|
nitch
|
||||||
noto-fonts-emoji
|
noto-fonts-emoji
|
||||||
|
odt2txt
|
||||||
openfortivpn-git
|
openfortivpn-git
|
||||||
openssh
|
openssh
|
||||||
|
p7zip
|
||||||
pamixer
|
pamixer
|
||||||
pavucontrol
|
pavucontrol
|
||||||
|
perl-image-exiftool
|
||||||
|
pfetch
|
||||||
picom
|
picom
|
||||||
pipewire
|
pipewire
|
||||||
pipewire-alsa
|
pipewire-alsa
|
||||||
pipewire-jack
|
pipewire-jack
|
||||||
pipewire-pulse
|
pipewire-pulse
|
||||||
|
postgresql-libs
|
||||||
|
python-chardet
|
||||||
|
python-pip
|
||||||
python2
|
python2
|
||||||
pywal-16-colors
|
pywal-16-colors
|
||||||
qbittorrent
|
qbittorrent
|
||||||
|
qimgv-git
|
||||||
qpwgraph
|
qpwgraph
|
||||||
|
qtraw-git
|
||||||
|
ranger
|
||||||
reflector
|
reflector
|
||||||
ripgrep
|
ripgrep
|
||||||
rofi
|
rofi
|
||||||
rofi-greenclip
|
rofi-greenclip
|
||||||
|
ruby-pleaserun
|
||||||
|
rustup
|
||||||
signal-desktop-beta
|
signal-desktop-beta
|
||||||
sof-firmware
|
sof-firmware
|
||||||
spotifyd
|
spotifyd
|
||||||
|
squashfs-tools
|
||||||
sxhkd
|
sxhkd
|
||||||
tmux
|
tmux
|
||||||
ttf-mononoki-nerd
|
ttf-mononoki-nerd
|
||||||
|
ueberzug
|
||||||
|
unace
|
||||||
|
unixodbc
|
||||||
|
unrar
|
||||||
|
w3m
|
||||||
weechat
|
weechat
|
||||||
wezterm-git
|
wezterm-git
|
||||||
wireplumber
|
wireplumber
|
||||||
xclip
|
xclip
|
||||||
xdg-ninja-git
|
xdg-user-dirs
|
||||||
xdg-utils
|
xdg-utils
|
||||||
xorg-server
|
xorg-server
|
||||||
xorg-xev
|
xorg-xev
|
||||||
@ -72,5 +110,6 @@ xorg-xinit
|
|||||||
xorg-xset
|
xorg-xset
|
||||||
xorg-xsetroot
|
xorg-xsetroot
|
||||||
yadm
|
yadm
|
||||||
|
yarn
|
||||||
yay
|
yay
|
||||||
zsh
|
zsh
|
||||||
|
Loading…
Reference in New Issue
Block a user