Added a bunch of submodules
This commit is contained in:
parent
f8f599f9f0
commit
9624a017a9
4 changed files with 27 additions and 2 deletions
18
.gitmodules
vendored
Normal file
18
.gitmodules
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
[submodule "tmux/plugins/tmux-continuum"]
|
||||||
|
path = tmux/plugins/tmux-continuum
|
||||||
|
url = https://git::@github.com/tmux-plugins/tmux-continuum
|
||||||
|
[submodule "tmux/plugins/tpm"]
|
||||||
|
path = tmux/plugins/tpm
|
||||||
|
url = https://github.com/tmux-plugins/tpm
|
||||||
|
[submodule "tmux/plugins/tmux-onedark-theme"]
|
||||||
|
path = tmux/plugins/tmux-onedark-theme
|
||||||
|
url = https://git::@github.com/odedlaz/tmux-onedark-theme
|
||||||
|
[submodule "tmux/plugins/tmux-resurrect"]
|
||||||
|
path = tmux/plugins/tmux-resurrect
|
||||||
|
url = https://git::@github.com/tmux-plugins/tmux-resurrect
|
||||||
|
[submodule "tmux/plugins/tmux-themepack"]
|
||||||
|
path = tmux/plugins/tmux-themepack
|
||||||
|
url = https://git::@github.com/jimeh/tmux-themepack
|
||||||
|
[submodule "tmux/plugins/tmux-yank"]
|
||||||
|
path = tmux/plugins/tmux-yank
|
||||||
|
url = https://git::@github.com/tmux-plugins/tmux-yank
|
|
@ -39,6 +39,8 @@ function installDependencies() {
|
||||||
|
|
||||||
# Install Oh My Zsh
|
# Install Oh My Zsh
|
||||||
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
|
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
|
||||||
|
# Install powerlevel9k theme in Oh-My-Zsh
|
||||||
|
git clone https://github.com/bhilburn/powerlevel9k.git $HOME/.oh-my-zsh/custom/themes/powerlevel9k
|
||||||
|
|
||||||
# Set ZSH as default shell
|
# Set ZSH as default shell
|
||||||
sudo -u $USER chsh -s $(which zsh)
|
sudo -u $USER chsh -s $(which zsh)
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 90f4a00c41de094864dd4e29231253bcd80d4409
|
Subproject commit 4e2279688d8a577ed14f42c4e8af1acb58100a57
|
7
zshrc
7
zshrc
|
@ -8,8 +8,9 @@ export ZSH=$HOME/.oh-my-zsh
|
||||||
# it'll load a random theme each time that oh-my-zsh is loaded.
|
# it'll load a random theme each time that oh-my-zsh is loaded.
|
||||||
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
|
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
|
||||||
#ZSH_THEME="random"
|
#ZSH_THEME="random"
|
||||||
ZSH_THEME="avit"
|
#ZSH_THEME="avit"
|
||||||
#ZSH_THEME="half-life"
|
#ZSH_THEME="half-life"
|
||||||
|
ZSH_THEME="agnoster"
|
||||||
|
|
||||||
# Uncomment the following line to use case-sensitive completion.
|
# Uncomment the following line to use case-sensitive completion.
|
||||||
CASE_SENSITIVE="true"
|
CASE_SENSITIVE="true"
|
||||||
|
@ -66,6 +67,10 @@ export LANG=fr_FR.UTF-8
|
||||||
|
|
||||||
# Preferred editor for local and remote sessions
|
# Preferred editor for local and remote sessions
|
||||||
export EDITOR='vim'
|
export EDITOR='vim'
|
||||||
|
|
||||||
|
# Hide username by setting DEFAULT_USER
|
||||||
|
export DEFAULT_USER=adrien
|
||||||
|
|
||||||
# if [[ -n $SSH_CONNECTION ]]; then
|
# if [[ -n $SSH_CONNECTION ]]; then
|
||||||
# export EDITOR='vim'
|
# export EDITOR='vim'
|
||||||
# else
|
# else
|
||||||
|
|
Loading…
Reference in a new issue