nvim/vimrc

62 lines
1.2 KiB
VimL
Raw Normal View History

2015-10-14 21:45:59 +00:00
silent! runtime bundle/vim-pathogen/autoload/pathogen.vim
silent! execute pathogen#infect()
2015-10-13 10:01:04 +00:00
2015-11-20 10:27:25 +00:00
inoremap <down> <nop>
inoremap <left> <nop>
inoremap <right> <nop>
inoremap <up> <nop>
nmap <silent> <A-Down> :wincmd j<CR>
nmap <silent> <A-Left> :wincmd h<CR>
nmap <silent> <A-Right> :wincmd l<CR>
2015-10-22 09:20:01 +00:00
nmap <silent> <A-Up> :wincmd k<CR>
2015-11-20 10:27:25 +00:00
nnoremap <down> <nop>
nnoremap <left> <nop>
nnoremap <right> <nop>
nnoremap <up> <nop>
2015-10-13 10:01:04 +00:00
set autoindent
2015-10-13 14:30:10 +00:00
set background=dark
set colorcolumn=73
2015-10-19 11:52:42 +00:00
set cursorcolumn
set cursorline
set directory=$TEMP//,/tmp//,.
2015-10-19 11:52:42 +00:00
set encoding=utf-8
2015-10-13 10:01:04 +00:00
set expandtab
2015-12-10 13:44:28 +00:00
set guioptions=cr
2015-10-19 11:52:42 +00:00
set ignorecase
2015-10-13 10:01:04 +00:00
set linebreak
2015-10-19 11:52:42 +00:00
set list
set modelines=0
2015-10-13 10:01:04 +00:00
set number
2015-10-13 11:08:28 +00:00
set omnifunc=syntaxcomplete#Complete
2015-10-13 10:01:04 +00:00
set printoptions=paper:A4,duplex:off,header:0
2015-10-19 11:52:42 +00:00
set relativenumber
2015-10-13 10:01:04 +00:00
set ruler
set shiftwidth=4
2015-10-19 11:52:42 +00:00
set smartcase
2015-10-22 13:10:06 +00:00
set spl=en_gb nospell
2015-10-13 10:01:04 +00:00
set tabstop=4
set textwidth=72
2015-10-19 11:52:42 +00:00
set ttyfast
2015-10-13 10:01:04 +00:00
set wrap
2015-10-14 21:45:59 +00:00
silent! colorscheme desert
silent! filetype plugin indent on
silent! syntax on
2015-10-13 10:01:04 +00:00
if has("gui_running")
if has("gui_gtk2")
2016-02-09 11:22:30 +00:00
set guifont=Monoid\ 9
2015-10-13 10:01:04 +00:00
elseif has("gui_win32")
2016-02-09 11:22:30 +00:00
set guifont=Monoid:h9:cANSI
2015-10-13 10:01:04 +00:00
endif
set columns=88
set lines=40
try
colorscheme jellybeans
catch /^Vim\%((\a\+)\)\=:E185/
colorscheme darkblue
endtry
2015-10-13 10:01:04 +00:00
endif