rc

Apparantly I already had a (partially preconfigured) .zshrc file. I merged them together and made a symlink to where the previous one was stored.

Author
Vngngdn
Date
July 11, 2016, 3:02 p.m.
Hash
93d2d48e9439b384f35efe728450a3ba75e9f587
Parent
936fa5830f504f040a97002edb5a2ee9c8c18aff
Modified file
.zshrc

.zshrc

27 additions and 0 deletions.

View changes Hide changes
+
1
HISTFILE=~/.histfile
+
2
HISTSIZE=1000
+
3
SAVEHIST=1000
+
4
bindkey -e
+
5
# End of lines configured by zsh-newuser-install
+
6
# The following lines were added by compinstall
+
7
zstyle :compinstall filename '/home/maarten/.zshrc'
+
8
+
9
autoload -Uz compinit
+
10
compinit
+
11
# End of lines added by compinstall
+
12
+
13
#By myself; these will explicitely tell ZSH to autoload this file.
+
14
autoload -U promptinit
+
15
promptinit
+
16
+
17
#This is for colors:
+
18
autoload -U colors && colors
+
19
+
20
#This is for the Powerline font:
+
21
# Eum, this doesn't work. commented out until further notice.
+
22
#. /usr/share/zsh/site-contrib-powerline.zsh
+
23
+
24
# This allows The Fuck to work properly. For more information on how installing and stuff, I refer to https://github.com/nvbn/thefuck.
+
25
eval $(thefuck --alias)
+
26
+
27
# Ignore useless files and directories:
1
28
zstyle ':completion:*' ignored-patterns '*?.pyc' '__pycache__' '*?.class'
2
29