Skip to content
This repository has been archived by the owner on Sep 1, 2019. It is now read-only.

Commit

Permalink
Latest update
Browse files Browse the repository at this point in the history
Includes path_helper fix, update of oh-my-zsh and nvim sourcing. Also
work out some resize window shortcut.
  • Loading branch information
kouno committed Dec 18, 2014
1 parent e7a63ea commit 891c026
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 2 deletions.
5 changes: 5 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/bin/sh

echo "Updating path_helper to fix path issue in vim..."
echo "See hack from https://github.com/dotphiles/dotzsh/tree/c2d33b204c1f70c925f1507a6c366e5c395bfc36#mac-os-x"
echo ""
sudo chmod ugo-x /usr/libexec/path_helper

cutstring="DO NOT EDIT BELOW THIS LINE"

for name in *; do
Expand Down
1 change: 1 addition & 0 deletions nvimrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
source ~/.vimrc
2 changes: 1 addition & 1 deletion oh-my-zsh
Empty file removed profile
Empty file.
11 changes: 11 additions & 0 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,17 @@ nnoremap <silent> ]b :bnext<CR>
nnoremap <silent> [B :bfirst<CR>
nnoremap <silent> ]B :blast<CR>
" Resize window (alt key character)
"map <silent> <a-h> <c-w><
"map <silent> <a-j> <c-w>-
"map <silent> <a-k> <c-w>+
"map <silent> <a-l> <c-w>>

map <silent> ˙ <C-w><
map <silent> <C-W>-
map <silent> ˚ <C-W>+
map <silent> ¬ <C-w>>
" Use open new files faster with " e<stuff>"
cnoremap %% <C-R>=fnameescape(expand('%:h')).'/'<cr>
map <leader>ew :e %%
Expand Down
1 change: 0 additions & 1 deletion zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ plugins=(
bower
brew
gem
github
git-extras
git-remote-branch
go
Expand Down

0 comments on commit 891c026

Please sign in to comment.