update
This commit is contained in:
parent
7477ca3135
commit
3d422dd786
3 changed files with 9 additions and 27 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
email = lennart.alff@gmail.com
|
email = lennart.alff@gmail.com
|
||||||
name = Thies Lennart Alff
|
name = Thies Lennart Alff
|
||||||
[merge]
|
[merge]
|
||||||
tool = kdiff3
|
tool = vimdiff
|
||||||
[diff]
|
[diff]
|
||||||
guitool = kompare
|
guitool = kompare
|
||||||
[init]
|
[init]
|
||||||
|
|
|
||||||
1
.vimrc
1
.vimrc
|
|
@ -5,6 +5,7 @@ set rtp+=~/.vim/bundle/Vundle.vim
|
||||||
call vundle#begin()
|
call vundle#begin()
|
||||||
Plugin 'preservim/nerdtree'
|
Plugin 'preservim/nerdtree'
|
||||||
Plugin 'ycm-core/YouCompleteMe'
|
Plugin 'ycm-core/YouCompleteMe'
|
||||||
|
Plugin 'airblade/vim-gitgutter'
|
||||||
|
|
||||||
call vundle#end()
|
call vundle#end()
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
|
|
||||||
33
.zshrc
33
.zshrc
|
|
@ -75,39 +75,20 @@ ZSH_THEME=""
|
||||||
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
|
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
|
||||||
# Example format: plugins=(rails git textmate ruby lighthouse)
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||||
# Add wisely, as too many plugins slow down shell startup.
|
# Add wisely, as too many plugins slow down shell startup.
|
||||||
plugins=(git zsh-autosuggestions ssh-agent)
|
plugins=(git zsh-autosuggestions ssh-agent jump)
|
||||||
|
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
# User configuration
|
|
||||||
|
|
||||||
# export MANPATH="/usr/local/man:$MANPATH"
|
|
||||||
|
|
||||||
# You may need to manually set your language environment
|
|
||||||
# export LANG=en_US.UTF-8
|
|
||||||
|
|
||||||
# Preferred editor for local and remote sessions
|
# Preferred editor for local and remote sessions
|
||||||
# if [[ -n $SSH_CONNECTION ]]; then
|
if [[ -n $SSH_CONNECTION ]]; then
|
||||||
# export EDITOR='vim'
|
export EDITOR='vim'
|
||||||
# else
|
else
|
||||||
# export EDITOR='mvim'
|
export EDITOR='vim'
|
||||||
# fi
|
fi
|
||||||
|
|
||||||
# Compilation flags
|
|
||||||
# export ARCHFLAGS="-arch x86_64"
|
|
||||||
|
|
||||||
# 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.
|
|
||||||
# For a full list of active aliases, run `alias`.
|
|
||||||
#
|
|
||||||
# Example aliases
|
|
||||||
# alias zshconfig="mate ~/.zshrc"
|
|
||||||
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
|
||||||
|
|
||||||
alias reboot-windows="systemctl reboot --boot-loader-entry=windows.conf"
|
alias reboot-windows="systemctl reboot --boot-loader-entry=windows.conf"
|
||||||
alias reboot-linux="systemctl reboot --boot-loader-entry=arch.conf"
|
alias reboot-linux="systemctl reboot --boot-loader-entry=arch.conf"
|
||||||
|
<<<<<<< Updated upstream
|
||||||
alias zshrc="vim ~/.zshrc"
|
alias zshrc="vim ~/.zshrc"
|
||||||
|
|
||||||
export GEM_HOME="$(ruby -e 'puts Gem.user_dir')"
|
|
||||||
export PATH="$PATH:$GEM_HOME/bin"
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue