Add neovim

This commit is contained in:
Fabian Ising
2018-07-29 16:26:51 +02:00
parent 022fb330d5
commit 1a47a9f316
8 changed files with 43 additions and 8 deletions

View File

@@ -1,7 +1,13 @@
# Set path to work with pycharm ...
[[ "$PATH" =~ /usr/local/bin ]] || export PATH=$PATH:/usr/local/bin
[[ -f ~/.zsh/.powerline_config ]] && source ~/.zsh/.powerline_config
[[ -f ~/.zsh/.user_config ]] && source ~/.zsh/.user_config
[[ -f ~/.zsh/.virtual_env_config.zsh ]] && source ~/.zsh/.virtual_env_config.zsh
[[ -f /usr/share/doc/find-the-command/ftc.zsh ]] && source /usr/share/doc/find-the-command/ftc.zsh
[[ -f ~/.zsh/.mac_config ]] && source ~/.zsh/.mac_config
POWERLEVEL9K_INSTALLATION_PATH=$ANTIGEN_BUNDLES/bhilburn/powerlevel9k
# Load Antigen
source ~/.zsh/antigen/antigen.zsh
@@ -14,8 +20,7 @@ antigen use oh-my-zsh
#
# Antigen Theme
#
antigen theme agnoster
antigen theme bhilburn/powerlevel9k powerlevel9k
#
# Antigen Bundles
@@ -28,6 +33,7 @@ antigen bundle go
# antigen bundle tmuxinator
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-autosuggestions
# For SSH, starting ssh-agent is annoying
antigen bundle ssh-agent
@@ -37,5 +43,8 @@ antigen bundle pip
antigen bundle python
antigen bundle virtualenv
antigen bundle virtualenv
antigen apply
export EDITOR='vim'
alias vim=nvim
export EDITOR='nvim'