commit
5128374241
6 changed files with 1800 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,2 +1,4 @@
|
|||
*.swp
|
||||
*.bak
|
||||
*~
|
||||
|
||||
|
|
|
|||
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -13,3 +13,6 @@
|
|||
[submodule "vim/pack/def/start/editorconfig"]
|
||||
path = vim/pack/def/start/editorconfig
|
||||
url = https://github.com/editorconfig/editorconfig-vim.git
|
||||
[submodule "zsh_files/powerlevel10k"]
|
||||
path = zsh_files/powerlevel10k
|
||||
url = https://github.com/romkatv/powerlevel10k.git
|
||||
|
|
|
|||
|
|
@ -11,6 +11,9 @@
|
|||
- ~/.fonts
|
||||
|
||||
- link:
|
||||
~/.zshrc: zshrc
|
||||
~/.zsh_files: zsh_files
|
||||
~/.p10k.zsh: p10k.zsh
|
||||
~/.bashrc: bashrc
|
||||
~/.profile: profile
|
||||
~/.inputrc: inputrc
|
||||
|
|
@ -25,6 +28,7 @@
|
|||
relink: true
|
||||
|
||||
- shell:
|
||||
- [git config --global alias.tree 'log --oneline --graph --decorate --all', Adding git alias for tree view]
|
||||
- [git submodule update --init --recursive, Installing submodules]
|
||||
- [fc-cache -f -v, Updating fonts]
|
||||
|
||||
|
|
|
|||
1
zsh_files/powerlevel10k
Submodule
1
zsh_files/powerlevel10k
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 0adbc1415bf1bad46a7fd111b39640d995294dad
|
||||
29
zshrc
Normal file
29
zshrc
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
||||
# Initialization code that may require console input (password prompts, [y/n]
|
||||
# confirmations, etc.) must go above this block; everything else may go below.
|
||||
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
||||
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||||
fi
|
||||
|
||||
# Lines configured by zsh-newuser-install
|
||||
HISTFILE=~/.histfile
|
||||
HISTSIZE=5000
|
||||
SAVEHIST=5000
|
||||
setopt nomatch
|
||||
unsetopt beep
|
||||
bindkey -e
|
||||
# End of lines configured by zsh-newuser-install
|
||||
# The following lines were added by compinstall
|
||||
zstyle :compinstall filename '/home/amulbrook/.zshrc'
|
||||
|
||||
autoload -Uz compinit
|
||||
compinit
|
||||
# End of lines added by compinstall
|
||||
|
||||
source ~/.zsh_files/powerlevel10k/powerlevel10k.zsh-theme
|
||||
|
||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||
|
||||
alias ls='ls --color=auto'
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue