File tree 4 files changed +1
-41
lines changed
4 files changed +1
-41
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ pushd $(pwd)/$(dirname $0) > /dev/null && SRC=$(pwd) && popd > /dev/null
6
6
pushd " $SRC " > /dev/null # work in the directory the script is in
7
7
8
8
# All of the simple thing that need a simple link
9
- LINK=" tmux.conf zshrc zshenv vimrc gitignore_global tmuxinator "
9
+ LINK=" tmux.conf zshrc zshenv vimrc gitignore_global"
10
10
for f in $LINK ; do
11
11
if [ -e " $HOME /.$f " ]; then
12
12
if [[ $* == * --overwrite* ]]; then
44
44
echo " [ gitconfig ] gitconfig exists – skipping"
45
45
fi
46
46
47
- # set up folder for our persistent vim logs
48
- echo " [ logs ] creating and setting permissions on log directories"
49
- mkdir -p " $HOME /.logs/vim-undodir"
50
-
51
- if grep " sqlite-history" " $HOME /.profile" > /dev/null; then
52
- echo " [ zsh ] sqlite3 already installed"
53
- else
54
- echo " [ zsh ] installing sqlite3 hook"
55
-
56
- git clone -q " https://github.com/larkery/zsh-histdb.git"
57
-
58
- echo " . $SRC /zsh-histdb/sqlite-history.zsh" >> " $HOME /.profile"
59
- echo " . $SRC /zsh-histdb/history-timer.zsh" >> " $HOME /.profile"
60
- echo " autoload -Uz add-zsh-hook" >> " $HOME /.profile"
61
- echo " add-zsh-hook preexec _start_timer" >> " $HOME /.profile"
62
- echo " add-zsh-hook precmd _stop_timer" >> " $HOME /.profile"
63
- mkdir " $HOME /.histdb"
64
- chmod 700 " $HOME /.histdb"
65
- fi
66
-
67
47
popd > /dev/null
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -110,13 +110,6 @@ nmap <leader>ss :setlocal spell!<cr>
110
110
" Fast edit vimrc
111
111
nmap <leader> e :e ~/.vimrc<cr>
112
112
113
- " Persistent undo history
114
- try
115
- set undodir = ~/.logs/vim-undodir
116
- set undofile
117
- catch
118
- endtry
119
-
120
113
" Goyo (distraction free editing) shortcut
121
114
nmap <silent> <leader> zz :Goyo<cr>
122
115
You can’t perform that action at this time.
0 commit comments