From 0ad3fe4700558b7ddfa1e3c87919b1e8cc82235c Mon Sep 17 00:00:00 2001 From: kugelzucker Date: Mon, 11 May 2015 11:06:33 +0200 Subject: [PATCH 1/9] renamed prompt.zsh to prompt.zsh silly you! --- .zsh/lib/{promt.zsh => prompt.zsh} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .zsh/lib/{promt.zsh => prompt.zsh} (100%) diff --git a/.zsh/lib/promt.zsh b/.zsh/lib/prompt.zsh similarity index 100% rename from .zsh/lib/promt.zsh rename to .zsh/lib/prompt.zsh From e9785c64995f8a49abcb71dbddc50000838b3dd0 Mon Sep 17 00:00:00 2001 From: kugelzucker Date: Mon, 11 May 2015 11:18:22 +0200 Subject: [PATCH 2/9] removed .gvimrc --- .gvimrc | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 .gvimrc diff --git a/.gvimrc b/.gvimrc deleted file mode 100644 index 1c588e8b..00000000 --- a/.gvimrc +++ /dev/null @@ -1,5 +0,0 @@ -set guifont=Menlo:h14 -set gcr=n-v-c:block-Cursor/block-Cursor-blinkon0,i-ci:hor20-Cursor-blinkwait2000-blinkon1500-blinkoff500 - -" Hide Toolbar from MacVim -set guioptions-=T From 98d41af59f4a5b63cc7860df9a2332ff57528df8 Mon Sep 17 00:00:00 2001 From: kugelzucker Date: Mon, 11 May 2015 11:24:06 +0200 Subject: [PATCH 3/9] updated README.md with setup-info. --- README.md | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cf662c02..7816f1d4 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,27 @@ dotfiles ======== -Collection of various config files +Collection of various config files, stolen from hukl, modified to my needs. + +## General Setup +clone the repository to a location of your choice and link .zshrc, vim.rc, .zsh to your home home-directory. + + $DOTILES_DIR = ~/dotfiles + ln -s $DOTFILES_DIR/.zsh ~/ + ln -s $DOTFILES_DIR/.zshrc ~/ + ln -s $DOTFILES_DIR/.vimrc ~/ + ln -s $DOTFILES_DIR/.zlogin ~/ + + mkdir ~/.vimbackup + + + ## Vim -run ```git submodule init && git submodule update``` before starting vim +run ```git submodule init && git submodule update``` before starting vim. + + +## For *sudoers* + +in case you want to use `sudo` it is a good idea to do all that again for the root user. From a145954159af3eba4e5b2b71368125dabf541085 Mon Sep 17 00:00:00 2001 From: kugelzucker Date: Mon, 11 May 2015 11:27:37 +0200 Subject: [PATCH 4/9] updated typo $DOTFILES_DIR --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7816f1d4..134a88d2 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Collection of various config files, stolen from hukl, modified to my needs. ## General Setup clone the repository to a location of your choice and link .zshrc, vim.rc, .zsh to your home home-directory. - $DOTILES_DIR = ~/dotfiles + $DOTFILES_DIR = ~/dotfiles ln -s $DOTFILES_DIR/.zsh ~/ ln -s $DOTFILES_DIR/.zshrc ~/ ln -s $DOTFILES_DIR/.vimrc ~/ From 385a63691b67658599a9f70e43036f4fb646f572 Mon Sep 17 00:00:00 2001 From: kugelzucker Date: Mon, 11 May 2015 11:32:33 +0200 Subject: [PATCH 5/9] added reminder about .git and .gitmodules. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 134a88d2..7dbe0d8b 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ clone the repository to a location of your choice and link .zshrc, vim.rc, .zsh mkdir ~/.vimbackup - +i am leaving out *.git* and *.gitmodules* on purpose right now, since i havent cleaned them up yet. ## Vim From 64b3562cbe1e5e45c1a0bad3966d777bd2fc6abd Mon Sep 17 00:00:00 2001 From: kugelzucker Date: Mon, 11 May 2015 11:40:42 +0200 Subject: [PATCH 6/9] fixed error in declaration of . apologies. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7dbe0d8b..b60c0da5 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ Collection of various config files, stolen from hukl, modified to my needs. ## General Setup clone the repository to a location of your choice and link .zshrc, vim.rc, .zsh to your home home-directory. - $DOTFILES_DIR = ~/dotfiles + + DOTFILES_DIR="~/dotfiles" ln -s $DOTFILES_DIR/.zsh ~/ ln -s $DOTFILES_DIR/.zshrc ~/ ln -s $DOTFILES_DIR/.vimrc ~/ From 2d4a86c4db25bce443e7f85ad5b6adb014f27f97 Mon Sep 17 00:00:00 2001 From: kugelzucker Date: Mon, 11 May 2015 11:47:33 +0200 Subject: [PATCH 7/9] removed ruby rum from .zlogin --- .zlogin | 3 --- 1 file changed, 3 deletions(-) diff --git a/.zlogin b/.zlogin index d8b227b8..18581af3 100644 --- a/.zlogin +++ b/.zlogin @@ -1,6 +1,3 @@ -source ~/.rvm/scripts/'rvm' - -PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting PATH=/usr/local/bin:$PATH PATH=/usr/local/bin:/usr/local/sbin:$PATH From a28706d3bce3d09d14abb5e800f1a42d6e7da475 Mon Sep 17 00:00:00 2001 From: kugelzucker Date: Mon, 11 May 2015 12:13:31 +0200 Subject: [PATCH 8/9] edit README with setup instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b60c0da5..fc1ccd12 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ clone the repository to a location of your choice and link .zshrc, vim.rc, .zsh ln -s $DOTFILES_DIR/.zsh ~/ ln -s $DOTFILES_DIR/.zshrc ~/ ln -s $DOTFILES_DIR/.vimrc ~/ + ln -s $DOTFILES_DIR/.vim ~/ ln -s $DOTFILES_DIR/.zlogin ~/ - mkdir ~/.vimbackup i am leaving out *.git* and *.gitmodules* on purpose right now, since i havent cleaned them up yet. From b33c3a33579e2613421ff0c36b0fa26168b0b0a0 Mon Sep 17 00:00:00 2001 From: kugelzucker Date: Mon, 11 May 2015 12:23:59 +0200 Subject: [PATCH 9/9] README ocd --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc1ccd12..9460c4d6 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ clone the repository to a location of your choice and link .zshrc, vim.rc, .zsh ln -s $DOTFILES_DIR/.zlogin ~/ mkdir ~/.vimbackup -i am leaving out *.git* and *.gitmodules* on purpose right now, since i havent cleaned them up yet. +i am leaving out *.git* and *.gitmodules* on purpose right now, since i haven't cleaned them up yet. ## Vim