|
90 | 90 |
|
91 | 91 | " Most prefer to automatically switch to the current file directory when
|
92 | 92 | " a new buffer is opened; to prevent this behavior, add the following to
|
93 |
| - " your .vimrc.bundles.local file: |
| 93 | + " your .vimrc.before file: |
94 | 94 | " let g:spf13_no_autochdir = 1
|
95 | 95 | if !exists('g:spf13_no_autochdir')
|
96 | 96 | autocmd BufEnter * if bufname("") !~ "^\[A-Za-z0-9\]*://" | lcd %:p:h | endif
|
|
117 | 117 | set undoreload=10000 " Maximum number lines to save for undo on a buffer reload
|
118 | 118 | endif
|
119 | 119 |
|
120 |
| - " To disable views add the following to your .vimrc.bundles.local file: |
| 120 | + " To disable views add the following to your .vimrc.before file: |
121 | 121 | " let g:spf13_no_views = 1
|
122 | 122 | if !exists('g:spf13_no_views')
|
123 | 123 | " Add exclusions to mkview and loadview
|
|
224 | 224 |
|
225 | 225 | " The default leader is '\', but many people prefer ',' as it's in a standard
|
226 | 226 | " location. To override this behavior and set it back to '\' (or any other
|
227 |
| - " character) add the following to your .vimrc.bundles.local file: |
| 227 | + " character) add the following to your .vimrc.before file: |
228 | 228 | " let g:spf13_leader='\'
|
229 | 229 | if !exists('g:spf13_leader')
|
230 | 230 | let mapleader = ','
|
|
235 | 235 | " Easier moving in tabs and windows
|
236 | 236 | " The lines conflict with the default digraph mapping of <C-K>
|
237 | 237 | " If you prefer that functionality, add let g:spf13_no_easyWindows = 1
|
238 |
| - " in your .vimrc.bundles.local file |
| 238 | + " in your .vimrc.before file |
239 | 239 |
|
240 | 240 | if !exists('g:spf13_no_easyWindows')
|
241 | 241 | map <C-J> <C-W>j<C-W>_
|
|
251 | 251 | " The following two lines conflict with moving to top and
|
252 | 252 | " bottom of the screen
|
253 | 253 | " If you prefer that functionality, add the following to your
|
254 |
| - " .vimrc.bundles.local file: |
| 254 | + " .vimrc.before file: |
255 | 255 | " let g:spf13_no_fastTabs = 1
|
256 | 256 | if !exists('g:spf13_no_fastTabs')
|
257 | 257 | map <S-H> gT
|
|
545 | 545 | " These two lines conflict with the default digraph mapping of <C-K>
|
546 | 546 | " If you prefer that functionality, add
|
547 | 547 | " let g:spf13_no_neosnippet_expand = 1
|
548 |
| - " in your .vimrc.bundles.local file |
| 548 | + " in your .vimrc.before file |
549 | 549 |
|
550 | 550 | if !exists('g:spf13_no_neosnippet_expand')
|
551 | 551 | imap <C-k> <Plug>(neosnippet_expand_or_jump)
|
|
648 | 648 | " These two lines conflict with the default digraph mapping of <C-K>
|
649 | 649 | " If you prefer that functionality, add
|
650 | 650 | " let g:spf13_no_neosnippet_expand = 1
|
651 |
| - " in your .vimrc.bundles.local file |
| 651 | + " in your .vimrc.before file |
652 | 652 |
|
653 | 653 | if !exists('g:spf13_no_neosnippet_expand')
|
654 | 654 | imap <C-k> <Plug>(neosnippet_expand_or_jump)
|
|
0 commit comments