Adding emacs stuff
This commit is contained in:
parent
4cd060c128
commit
7a1b0e4178
31 changed files with 26489 additions and 3 deletions
19
.vimrc
19
.vimrc
|
|
@ -15,7 +15,7 @@ set encoding=utf-8
|
|||
" Turn off the menubar so we don't get key accelerators with Meta.
|
||||
" Don't include the toolbar
|
||||
set guioptions=aegiLt
|
||||
colorscheme inkpot
|
||||
"colorscheme ir_black
|
||||
set fenc=utf-8
|
||||
|
||||
if exists('&t_SI')
|
||||
|
|
@ -111,8 +111,15 @@ elseif has("gui_running")
|
|||
endif
|
||||
|
||||
" Try to load a nice colourscheme
|
||||
set t_Co=256
|
||||
color inkpot
|
||||
if ! has("gui_running")
|
||||
set t_Co=256
|
||||
colors inkpot
|
||||
else
|
||||
colors ir_black
|
||||
endif
|
||||
" set background=light gives a different style, feel free to choose between them.
|
||||
set background=dark
|
||||
"colors peaksea
|
||||
|
||||
" No icky toolbar, menu or scrollbars in the GUI
|
||||
"if has('gui')
|
||||
|
|
@ -651,6 +658,12 @@ if has("eval")
|
|||
let ruby_operators=1
|
||||
let ruby_space_errors=1
|
||||
|
||||
" clojure options
|
||||
let g:clj_want_gorilla = 1
|
||||
let g:clj_highlight_builtins = 1
|
||||
let g:clj_highlight_contrib = 1
|
||||
let g:clj_paren_rainbow = 1
|
||||
|
||||
" php specific options
|
||||
let php_sql_query=1
|
||||
let php_htmlInStrings=1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue