mirror of
https://github.com/amix/vimrc
synced 2025-06-23 15:04:59 +08:00
Fixed some typos in readme. Making it ready to be used on Windows as well
This commit is contained in:
@ -9,16 +9,19 @@
|
||||
" Blog_post:
|
||||
" http://amix.dk/blog/post/19691#The-ultimate-Vim-configuration-on-Github
|
||||
"
|
||||
" Awesome_version:
|
||||
" Get this config, nice color schemes and lots of plugins!
|
||||
"
|
||||
" Install the awesome version from:
|
||||
"
|
||||
" https://github.com/amix/vimrc
|
||||
"
|
||||
" Syntax_highlighted:
|
||||
" http://amix.dk/vim/vimrc.html
|
||||
"
|
||||
" Raw_version:
|
||||
" http://amix.dk/vim/vimrc.txt
|
||||
"
|
||||
" Awesome_version:
|
||||
" Get this config, nice color schemes and lots of plugins!
|
||||
" https://github.com/amix/vimrc
|
||||
"
|
||||
" Sections:
|
||||
" -> General
|
||||
" -> VIM user interface
|
||||
@ -120,7 +123,11 @@ set tm=500
|
||||
" Enable syntax highlighting
|
||||
syntax enable
|
||||
|
||||
colorscheme desert
|
||||
try
|
||||
colorscheme desert
|
||||
catch
|
||||
endtry
|
||||
|
||||
set background=dark
|
||||
|
||||
" Set extra options when running in GUI mode
|
||||
|
@ -35,9 +35,9 @@ map <leader>f :MRU<CR>
|
||||
" => YankRing
|
||||
""""""""""""""""""""""""""""""
|
||||
if has("win16") || has("win32")
|
||||
let g:yankring_history_dir = '~/_vim_runtime/temp_dirs/'
|
||||
let g:yankring_history_dir = 'C:\Windows\temp\yank_vim_dir'
|
||||
else
|
||||
let g:yankring_history_dir = '~/.vim_runtime/temp_dirs/'
|
||||
let g:yankring_history_dir = '~/.vim_runtime/temp_dirs/'
|
||||
endif
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user