diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2019-07-13 00:55:52 +0200 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2019-07-13 00:55:52 +0200 |
commit | 9542cec9e3d68c9cef7a008d8feaef891ae9bba4 (patch) | |
tree | 918de6d4af7a42d5594b3db9ea939e21dc734733 | |
parent | e5f6faf61ac6ec388eda637c04d00092f013a004 (diff) | |
download | dotfiles-9542cec9e3d68c9cef7a008d8feaef891ae9bba4.tar.gz dotfiles-9542cec9e3d68c9cef7a008d8feaef891ae9bba4.zip |
Add arch-install and zshrc
-rw-r--r-- | bin/install_arch.sh (renamed from bin/install_GNULinux.sh) | 7 | ||||
-rw-r--r-- | fonts/Roboto Mono Nerd Font Complete Mono.ttf | bin | 0 -> 935792 bytes | |||
-rw-r--r-- | tmux.conf | 2 | ||||
-rw-r--r-- | zshrc | 60 |
4 files changed, 67 insertions, 2 deletions
diff --git a/bin/install_GNULinux.sh b/bin/install_arch.sh index 2d150d2..5306ba2 100644 --- a/bin/install_GNULinux.sh +++ b/bin/install_arch.sh @@ -6,3 +6,10 @@ git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-m echo "Install powerlevel9k"
sudo pacman -S zsh-theme-powerlevel9k
+
+sudo pacman -S highlight atool w3m mediainfo
+
+ln -i zshrc ~/.zshrc
+
+
+echo "Please install the font Roboto mono nerd, and enable it in your terminal."
diff --git a/fonts/Roboto Mono Nerd Font Complete Mono.ttf b/fonts/Roboto Mono Nerd Font Complete Mono.ttf Binary files differnew file mode 100644 index 0000000..c5de777 --- /dev/null +++ b/fonts/Roboto Mono Nerd Font Complete Mono.ttf @@ -26,5 +26,3 @@ setw -g monitor-activity on set -g visual-activity on set-window-option -g window-status-current-bg yellow - - @@ -0,0 +1,60 @@ +# If you come from bash you might have to change your $PATH. +# export PATH=$HOME/bin:/usr/local/bin:$PATH + +export ZSH="/home/jakob/.oh-my-zsh" + +ZSH_THEME="powerlevel9k/powerlevel9k" + +export UPDATE_ZSH_DAYS=30 + +# Uncomment the following line to enable command auto-correction. +# ENABLE_CORRECTION="true" + +COMPLETION_WAITING_DOTS="true" + +plugins=( + git + zsh-autosuggestions + zsh-syntax-highlighting +) + +source $ZSH/oh-my-zsh.sh + +# User configuration + +# You may need to manually set your language environment +# export LANG=en_US.UTF-8 +DEFAULT_USER="jakob" + +# POWERLINE9K +POWERLEVEL9K_MODE="nerdfont-complete" + +POWERLINE9K_PROMPT_ADD_NEWLINE=true + +POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir vcs) +POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status root_indicator background_jobs) + +POWERLEVEL9K_SHORTEN_STRATERGY="truncate_to_last" +POWERLEVEL9K_SHORTEN_DIR_LENGTH=2 +POWERLEVEL9K_DIR_SHOW_WRITABLE=true + +# Powerline color config +POWERLEVEL9K_STATUS_OK_BACKGROUND='004' +POWERLEVEL9K_STATUS_OK_FOREGROUND='015' +POWERLEVEL9K_STATUS_ERROR_BACKGROUND='001' +POWERLEVEL9K_STATUS_ERROR_FOREGROUND='015' + +# Powerline icon config +POWERLEVEL9K_LEFT_SEGMENT_SEPARATOR='\UE0B8' +POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR='\UE0BE' + +POWERLEVEL9K_HOME_ICON='\UF7DB' +POWERLEVEL9K_HOME_SUB_ICON='\UF07C' +POWERLEVEL9K_FOLDER_ICON='\UF07B' +POWERLEVEL9K_ETC_ICON='\UE5FC' +POWERLEVEL9K_LOCK_ICON='\UF023' + +POWERLEVEL9K_VCS_UNSTAGED_ICON='\UF421' +POWERLEVEL9K_VCS_STAGED='\UF055' +POWERLEVEL9K_VCS_UNTRACKED_ICON='\UF059' +POWERLEVEL9K_VCS_BRANCH_ICON='\UE725 ' |