initial commit

This commit is contained in:
Tristan
2017-06-06 18:02:21 +02:00
commit 178bfef951
481 changed files with 43275 additions and 0 deletions

56
.zshrc Executable file
View File

@@ -0,0 +1,56 @@
# Path to your oh-my-zsh installation.
export ZSH=/home/tristan/.oh-my-zsh
export NVIM_LISTEN_ADDRESS=/tmp/nvimsocket
export PATH=$HOME/.gem/ruby/2.4.0/bin/:$PATH
# 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
hostname=$(</etc/hostname)
if [[ "$hostname" == "T-i3" ]]; then
ZSH_THEME="T-i3"
elif [[ "$hostname" == "TServer" ]]; then
ZSH_THEME="TServer"
else
ZSH_THEME="T-netbook"
fi
plugins=(archlinux zsh-autosuggestions)
source $ZSH/oh-my-zsh.sh
# User configuration
export RUBY_GC_HEAP_INIT_SLOTS=800000
export RUBY_HEAP_FREE_MIN=100000
export RUBY_HEAP_SLOTS_INCREMENT=300000
export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
export RUBY_GC_MALLOC_LIMIT=79000000
# export MANPATH="/usr/local/man:$MANPATH"
export RANGER_LOAD_DEFAULT_RC=FALSE
# You may need to manually set your language environment
# export LANG=en_US.UTF-8
#Preferred editor for local and remote sessions
if [[ -n $SSH_CONNECTION ]]; then
export EDITOR='nvim'
else
export EDITOR='nvim'
fi
# Compilation flags
# export ARCHFLAGS="-arch x86_64"
# ssh
# export SSH_KEY_PATH="~/.ssh/rsa_id"
# 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 ccat="source-highlight --out-format=esc -i"