mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-04-13 09:30:06 +00:00
cleanup comments in vimrc
This commit is contained in:
parent
fb55f6de62
commit
7a820de14a
1 changed files with 9 additions and 9 deletions
18
vimrc
18
vimrc
|
@ -3,8 +3,8 @@
|
||||||
" Trivial modifications: David Majnemer
|
" Trivial modifications: David Majnemer
|
||||||
" vim: set ts=3 sw=3 et nowrap:
|
" vim: set ts=3 sw=3 et nowrap:
|
||||||
|
|
||||||
if has ('multi_byte') " Make sure we have unicode support
|
if has ('multi_byte') " Make sure we have unicode support
|
||||||
scriptencoding utf-8 " This file is in UTF-8
|
scriptencoding utf-8 " This file is in UTF-8
|
||||||
|
|
||||||
" ---- Terminal Setup ----
|
" ---- Terminal Setup ----
|
||||||
if (&termencoding == "")
|
if (&termencoding == "")
|
||||||
|
@ -12,7 +12,7 @@ if has ('multi_byte') " Make sure we have unicode support
|
||||||
set termencoding=utf-8
|
set termencoding=utf-8
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
set encoding=utf-8 " Default encoding should always be UTF-8
|
set encoding=utf-8 " Default encoding should always be UTF-8
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" ---- General Setup ----
|
" ---- General Setup ----
|
||||||
|
@ -50,9 +50,9 @@ if has('syntax')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if has('osfiletype')
|
if has('osfiletype')
|
||||||
filetype on " Detect filetype by extension
|
filetype on " Detect filetype by extension
|
||||||
filetype indent on " Enable indents based on extensions
|
filetype indent on " Enable indents based on extensions
|
||||||
filetype plugin on " Load filetype plugins
|
filetype plugin on " Load filetype plugins
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" ---- Folding ----
|
" ---- Folding ----
|
||||||
|
@ -128,11 +128,11 @@ if has('eval')
|
||||||
endfun
|
endfun
|
||||||
|
|
||||||
if has("gui_running")
|
if has("gui_running")
|
||||||
call LoadColorScheme("wombat:desert") " Set the colorscheme
|
call LoadColorScheme("wombat:desert")
|
||||||
elseif &t_Co == 256
|
elseif &t_Co == 256
|
||||||
call LoadColorScheme("wombat:inkpot") " Set the colorscheme
|
call LoadColorScheme("wombat:inkpot")
|
||||||
else
|
else
|
||||||
call LoadColorScheme("zellner") " Set the colorscheme
|
call LoadColorScheme("zellner")
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue