Added support for Linux Mint

This commit is contained in:
Gene Liverman 2017-09-18 19:01:57 -07:00 committed by Gene Liverman
parent e23ea50d4b
commit b0ec3a08ba
23 changed files with 337 additions and 87 deletions

1
link/linux/tmux.conf Normal file
View file

@ -0,0 +1 @@
source "/usr/share/powerline/bindings/tmux/powerline.conf"

View file

@ -0,0 +1 @@
set rtp+='/usr/share/vim/addons/plugin/powerline.vim'

View file

@ -0,0 +1,3 @@
python from powerline.vim import setup as powerline_setup
python powerline_setup()
python del powerline_setup

View file

@ -57,7 +57,4 @@ let g:syntastic_ruby_checkers = ['rubocop']
let g:syntastic_quiet_messages = {'level': 'warnings'}
let g:vim_markdown_folding_disabled = 1
python from powerline.vim import setup as powerline_setup
python powerline_setup()
python del powerline_setup
source ~/.vimrc_os_specific

View file

@ -4,10 +4,13 @@ export ZSH=~/.oh-my-zsh
# 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.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
#ZSH_THEME="af-magic"
#ZSH_THEME="pygmalion"
#ZSH_THEME="muse"
ZSH_THEME="beanbag"
if [[ `uname` == 'Linux' ]]; then
ZSH_THEME="af-magic"
else
ZSH_THEME="beanbag"
#ZSH_THEME="pygmalion"
#ZSH_THEME="muse"
fi
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
@ -61,6 +64,11 @@ source $ZSH/oh-my-zsh.sh
# export MANPATH="/usr/local/man:$MANPATH"
# Start GPG agent
export GPG_TTY=$(tty)
gpg-connect-agent /bye
export SSH_AUTH_SOCK=~/.gnupg/S.gpg-agent.ssh
# Set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
# users are encouraged to define aliases within the ZSH_CUSTOM folder.