-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. fix the bug that use ag search we will search from the root folder. 2. add node_modules to the ignore search folder 3. improve the markdown editting feeling.
- Loading branch information
Showing
2 changed files
with
18 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
"========================================== | ||
" Thanks: k-vim Project | ||
" Author: mike | ||
" Version: 0.0.2 | ||
" Version: 0.0.3 | ||
" Email: [email protected] | ||
" ReadMe: README.md | ||
" Sections: | ||
|
@@ -478,8 +478,9 @@ nmap <silent> <leader>sv :so $MYVIMRC<CR> | |
"========================================== | ||
|
||
" 具体编辑文件类型的一般设置,比如不要 tab 等 | ||
autocmd FileType python set tabstop=4 shiftwidth=4 expandtab ai | ||
autocmd FileType ruby set tabstop=2 shiftwidth=2 softtabstop=2 expandtab ai | ||
autocmd FileType *.* set tabstop=4 shiftwidth=4 expandtab ai | ||
autocmd FileType .* set tabstop=4 shiftwidth=4 expandtab ai | ||
autocmd FileType * set tabstop=4 shiftwidth=4 expandtab ai | ||
autocmd BufRead,BufNewFile *.md,*.mkd,*.markdown set filetype=markdown.mkd | ||
autocmd BufRead,BufNewFile *.part set filetype=html | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters