Manjaro
This commit is contained in:
parent
0ce8b8ece9
commit
9503b74feb
4 changed files with 18 additions and 1741 deletions
8
Makefile
8
Makefile
|
@ -13,13 +13,13 @@ golibs:
|
||||||
dotfiles: ~/.gitconfig ~/.gitignore ~/.config/zsh ~/.config/nvim ~/.zshrc ~/.config/kitty
|
dotfiles: ~/.gitconfig ~/.gitignore ~/.config/zsh ~/.config/nvim ~/.zshrc ~/.config/kitty
|
||||||
|
|
||||||
~/.gitconfig:
|
~/.gitconfig:
|
||||||
@ln -s $(pwd)/git/config ~/.gitconfig || true
|
ln -s $(pwd)/git/config ~/.gitconfig || true
|
||||||
~/.gitignore:
|
~/.gitignore:
|
||||||
@ln -s $(pwd)/git/ignore ~/.gitignore || true
|
ln -s $(pwd)/git/ignore ~/.gitignore || true
|
||||||
~/.config/nvim:
|
~/.config/nvim:
|
||||||
@ln -s $(pwd)/nvim ~/.config/nvim || true
|
ln -s $(pwd)/nvim ~/.config/nvim || true
|
||||||
~/.config/zsh:
|
~/.config/zsh:
|
||||||
@ln -s $(pwd)/zsh ~/.config/zsh || true
|
ln -s $(pwd)/zsh ~/.config/zsh || true
|
||||||
~/.zshrc:
|
~/.zshrc:
|
||||||
@ln -s $(pwd)/zsh/zshrc ~/.zshrc || true
|
@ln -s $(pwd)/zsh/zshrc ~/.zshrc || true
|
||||||
~/.config/kitty:
|
~/.config/kitty:
|
||||||
|
|
1
zsh/p10k
1
zsh/p10k
|
@ -1 +0,0 @@
|
||||||
Subproject commit 62341054d8aa40ade03fc55bdbc95b9ff2d8d2b6
|
|
1732
zsh/p10k.zsh
1732
zsh/p10k.zsh
File diff suppressed because it is too large
Load diff
18
zsh/zshrc
18
zsh/zshrc
|
@ -1,8 +1,18 @@
|
||||||
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
# Use powerline
|
||||||
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
USE_POWERLINE="true"
|
||||||
|
# Has weird character width
|
||||||
|
# Example:
|
||||||
|
# is not a diamond
|
||||||
|
HAS_WIDECHARS="false"
|
||||||
|
# Source manjaro-zsh-configuration
|
||||||
|
if [[ -e /usr/share/zsh/manjaro-zsh-config ]]; then
|
||||||
|
source /usr/share/zsh/manjaro-zsh-config
|
||||||
fi
|
fi
|
||||||
source ~/.config/zsh/p10k.zsh
|
# Use manjaro zsh prompt
|
||||||
source ~/.config/zsh/p10k/powerlevel10k.zsh-theme
|
if [[ -e /usr/share/zsh/manjaro-zsh-prompt ]]; then
|
||||||
|
source /usr/share/zsh/manjaro-zsh-prompt
|
||||||
|
fi
|
||||||
|
|
||||||
source ~/.config/zsh/antigen.zsh
|
source ~/.config/zsh/antigen.zsh
|
||||||
|
|
||||||
antigen bundle zsh-users/zsh-syntax-highlighting
|
antigen bundle zsh-users/zsh-syntax-highlighting
|
||||||
|
|
Loading…
Reference in a new issue