theme depends on if in SSH session or not
This commit is contained in:
parent
a744220379
commit
9351a8addd
2 changed files with 9 additions and 2 deletions
3
.vim/.netrwhist
Normal file
3
.vim/.netrwhist
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
let g:netrw_dirhistmax =10
|
||||||
|
let g:netrw_dirhist_cnt =1
|
||||||
|
let g:netrw_dirhist_1='/home/stev/stevset/.oh-my-zsh/plugins/tmux'
|
8
.zshrc
8
.zshrc
|
@ -7,8 +7,12 @@
|
||||||
# Set name of the theme to load. Optionally, if you set this to "random"
|
# Set name of the theme to load. Optionally, if you set this to "random"
|
||||||
# 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="agnoster"
|
if [[ -n "$SSH_CLIENT" ]]
|
||||||
|
then
|
||||||
|
ZSH_THEME="bureau"
|
||||||
|
else
|
||||||
|
ZSH_THEME="agnoster"
|
||||||
|
fi
|
||||||
# Uncomment the following line to use case-sensitive completion.
|
# Uncomment the following line to use case-sensitive completion.
|
||||||
# CASE_SENSITIVE="true"
|
# CASE_SENSITIVE="true"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue