added zulu and changed some stuff
This commit is contained in:
parent
a461be3289
commit
dea9ae6adf
19 changed files with 22 additions and 15 deletions
10
.gitignore
vendored
10
.gitignore
vendored
|
@ -1,5 +1,5 @@
|
||||||
/home/eeleater/dotfiles/zulu/path
|
/home/eeleater/dotfiles/lib/zulu/path
|
||||||
/home/eeleater/dotfiles/zulu/fpath
|
/home/eeleater/dotfiles/lib/zulu/fpath
|
||||||
/home/eeleater/dotfiles/zulu/cdpath
|
/home/eeleater/dotfiles/lib/zulu/cdpath
|
||||||
/home/eeleater/dotfiles/zulu/manpath
|
/home/eeleater/dotfiles/lib/zulu/manpath
|
||||||
/home/eeleater/dotfiles/zulu/alias
|
/home/eeleater/dotfiles/lib/zulu/alias
|
||||||
|
|
6
.gitmodules
vendored
6
.gitmodules
vendored
|
@ -16,3 +16,9 @@
|
||||||
[submodule "lib/fzf"]
|
[submodule "lib/fzf"]
|
||||||
path = lib/fzf
|
path = lib/fzf
|
||||||
url = https://github.com/junegunn/fzf.git
|
url = https://github.com/junegunn/fzf.git
|
||||||
|
[submodule "lib/zulu/core"]
|
||||||
|
path = lib/zulu/core
|
||||||
|
url = https://github.com/zulu-zsh/zulu
|
||||||
|
[submodule "lib/zulu/index"]
|
||||||
|
path = lib/zulu/index
|
||||||
|
url = https://github.com/zulu-zsh/index
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 01c69f3ce201db8d2127cb35bdc904ce4fd0fd85
|
Subproject commit 2a30b05a5cf724a2d1c4c140c302dbf93f6aa6f6
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit e5dc42d708c0a659db6a3100f99340b63df19c9b
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 1f5b49615c929cceda135e489480f7e53836be2b
|
|
2
lib/fzf
2
lib/fzf
|
@ -1 +1 @@
|
||||||
Subproject commit 940214a1a2cbc64f32539e9a65beafc767f259e2
|
Subproject commit bc9d2abdb67639e06f7002b278341fb498b79456
|
1
lib/k
1
lib/k
|
@ -1 +0,0 @@
|
||||||
Subproject commit 1fa7c039d40684d39cb225599bda4a86a62e765d
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit fc08bf270a1ff5eba2a24e2c7722dbe381947b87
|
Subproject commit 43dd59ad3677b9e1ddd0e2b81000312fa5d7356b
|
1
lib/util
1
lib/util
|
@ -1 +0,0 @@
|
||||||
Subproject commit 2d69cda49b1f15b3026f2de0b7178f63b37b8b33
|
|
1
lib/zulu/index
Submodule
1
lib/zulu/index
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit aad6ee4f1c4a50964556664de6dd359dd425905c
|
10
zsh/zshrc
10
zsh/zshrc
|
@ -4,13 +4,17 @@ export OWN=${DOT}/zsh
|
||||||
export LIB=${DOT}/lib
|
export LIB=${DOT}/lib
|
||||||
export OMZ=${LIB}/ohmyzsh
|
export OMZ=${LIB}/ohmyzsh
|
||||||
export ZSH=${OMZ}
|
export ZSH=${OMZ}
|
||||||
export ZUL=${DOT}/zulu
|
export ZUL=${LIB}/zulu
|
||||||
export ZUC=${ZUL}/config/zulu
|
export ZUC=${ZUL}/config
|
||||||
export PATH="${HOME}/dotfiles/lib/bin:/opt/android-sdk/build-tools/26.0.0/:${PATH}"
|
export PATH="${HOME}/dotfiles/bin:/opt/android-sdk/build-tools/26.0.0/:${PATH}"
|
||||||
export EDITOR='nano'
|
export EDITOR='nano'
|
||||||
export TERM=linux
|
export TERM=linux
|
||||||
fpath=(${LIB}/completions/src $fpath)
|
fpath=(${LIB}/completions/src $fpath)
|
||||||
|
|
||||||
|
# Fix MobaXterm Home/End key with ZSH
|
||||||
|
bindkey '^[[H' beginning-of-line
|
||||||
|
bindkey '^[[F' end-of-line
|
||||||
|
|
||||||
# Settings & Dircolors
|
# Settings & Dircolors
|
||||||
ZSH_THEME="mortalscumbag"
|
ZSH_THEME="mortalscumbag"
|
||||||
DISABLE_AUTO_UPDATE="true"
|
DISABLE_AUTO_UPDATE="true"
|
||||||
|
|
Loading…
Add table
Reference in a new issue