nvim/vimrc

158 lines
4 KiB
VimL
Raw Normal View History

" Anthony Perkins
" https://github.com/acperkins/vimfiles
" Distributed under the VIM license. See ':help license' for a copy.
"
" Includes parts from Tim Pope's «sensible.vim»
" <https://github.com/tpope/vim-sensible>.
" ======================================================================
2017-04-10 13:04:34 +00:00
" Load Pathogen if Vim does not support packages.
if !has("packages")
2017-04-10 12:14:39 +00:00
runtime pack/acp/opt/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect('pack/acp/start/{}')
endif
2015-10-13 10:01:04 +00:00
" ======================================================================
2017-04-10 13:04:34 +00:00
" General settings for all builds.
2015-11-20 10:27:25 +00:00
inoremap <down> <nop>
inoremap <left> <nop>
inoremap <right> <nop>
inoremap <up> <nop>
2017-04-10 12:50:30 +00:00
nmap <silent> <A-Down> :wincmd j<CR>
nmap <silent> <A-Left> :wincmd h<CR>
nmap <silent> <A-Right> :wincmd l<CR>
2017-04-10 12:50:30 +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
set autoread
2015-10-13 14:30:10 +00:00
set background=dark
set backspace=indent,eol,start
set colorcolumn=73,81
set complete-=i
set directory=$TEMP//,/tmp//,.
set display+=lastline
2015-10-19 11:52:42 +00:00
set encoding=utf-8
2015-10-13 10:01:04 +00:00
set expandtab
set history=1000
2015-10-19 11:52:42 +00:00
set ignorecase
set incsearch
set laststatus=2
2015-10-13 10:01:04 +00:00
set linebreak
2015-10-19 11:52:42 +00:00
set list
2019-06-03 18:51:27 +00:00
set listchars=eol,tab:→·,trail:~,extends:>,precedes:<
2018-01-23 11:49:45 +00:00
set modeline
set modelines=1
2017-04-10 11:33:26 +00:00
set nocompatible
2017-01-25 15:37:36 +00:00
set nojoinspaces
set nrformats-=octal
2015-10-13 10:01:04 +00:00
set number
2015-10-13 11:08:28 +00:00
set omnifunc=syntaxcomplete#Complete
2015-10-19 11:52:42 +00:00
set relativenumber
set ruler
set sessionoptions-=options
2015-10-13 10:01:04 +00:00
set shiftwidth=4
2015-10-19 11:52:42 +00:00
set smartcase
set smarttab
2015-10-22 13:10:06 +00:00
set spl=en_gb nospell
set tabstop=8
set ttimeout
set ttimeoutlen=100
2015-10-19 11:52:42 +00:00
set ttyfast
2017-01-25 15:37:36 +00:00
set viminfo="NONE"
set wildmenu
2015-10-13 10:01:04 +00:00
set wrap
2017-04-10 11:33:26 +00:00
" ======================================================================
2017-04-10 13:04:34 +00:00
" General settings for non-minimal Vim builds.
2017-04-10 11:33:26 +00:00
if has("eval")
2017-04-10 13:04:34 +00:00
" Protect commands that are only available when +eval is enabled.
" Technically only "if 1" would be required, as "has()" is provided
" by +eval, but this is clearer.
2019-06-03 19:30:56 +00:00
colorscheme gruvbox
2017-04-10 11:33:26 +00:00
command Q q
command W w
command WQ wq
filetype plugin indent on
let g:netrw_altv=1
let g:netrw_banner=0
let g:netrw_browse_split=4
let g:netrw_liststyle=3
let g:netrw_sort_sequence='[\/]$,*'
let g:netrw_winsize=-28
2018-05-14 08:45:56 +00:00
" Disable vim-go warning on CentOS
let g:go_version_warning = 0
2018-01-15 09:17:49 +00:00
" Set colour levels for different terminals.
if &term == "rxvt-unicode"
set t_Co=256
elseif &term == "xterm"
set t_Co=256
elseif &term == "linux"
set t_Co=16
else
set t_Co=16
endif
endif
" ======================================================================
2017-04-10 13:04:34 +00:00
" Settings based on feature detection.
2017-04-10 12:50:30 +00:00
if has("autocmd")
2017-11-22 12:56:40 +00:00
autocmd BufRead,BufNewFile *.go set noexpandtab
2017-11-22 13:57:01 +00:00
autocmd BufRead,BufNewFile *.go set shiftwidth=8
autocmd BufRead,BufNewFile *.go set tabstop=8
2017-06-01 07:20:56 +00:00
autocmd BufRead,BufNewFile *.html set shiftwidth=2
2017-04-10 12:50:30 +00:00
autocmd BufRead,BufNewFile *.md set filetype=markdown
autocmd BufRead,BufNewFile *.md set tabstop=4
2018-06-28 09:25:51 +00:00
autocmd BufRead,BufNewFile *.opml set shiftwidth=2
2017-05-03 08:35:09 +00:00
autocmd BufRead,BufNewFile *.xml set shiftwidth=2
2017-08-05 21:04:17 +00:00
autocmd BufRead,BufNewFile *.yml set shiftwidth=2
2017-04-10 12:50:30 +00:00
endif
2017-04-10 12:14:39 +00:00
if has("folding")
set nofoldenable
endif
2017-04-10 12:50:30 +00:00
if has("gui_running")
if has("gui_gtk2") || has("gui_gtk3")
2017-04-10 12:50:30 +00:00
set clipboard=unnamedplus
set guifont=Fira\ Code\ Regular\ 11,
\Liberation\ Mono\ 11,
\Monospace\ Regular\ 11
2017-04-10 12:50:30 +00:00
elseif has("gui_win32")
set clipboard=unnamed
2017-04-26 07:47:56 +00:00
set guifont=Source_Code_Pro:h9:cANSI:qDRAFT,
\Consolas:h10:cANSI
2017-04-10 12:50:30 +00:00
endif
set columns=88
set guioptions+=c
2018-07-12 09:01:14 +00:00
set guioptions+=m
2017-04-10 12:50:30 +00:00
set guioptions-=T
set lines=40
endif
2017-04-10 12:14:39 +00:00
if has("patch-7.3.541")
set formatoptions+=j
2017-04-10 11:33:26 +00:00
endif
if has("printer")
set printheader=%t%h%m%=Page\ %N
set printoptions=paper:A4,number:y,syntax:n
endif
2017-04-10 12:50:30 +00:00
if has("smartindent")
set smartindent
endif
if has("syntax")
syntax on
2015-10-13 10:01:04 +00:00
endif
" ======================================================================
2017-04-10 13:04:34 +00:00
" End of config file.
" vim:set ft=vim et sw=4: