2017-04-06 08:03:26 +00:00
|
|
|
" Anthony Perkins
|
2019-06-17 18:32:39 +00:00
|
|
|
" https://git.acperkins.com/acp/vimfiles
|
2019-09-08 18:13:01 +00:00
|
|
|
"
|
2019-06-19 08:58:01 +00:00
|
|
|
" Distributed under the VIM license. See ':help license' for a copy.
|
2021-03-09 22:15:25 +00:00
|
|
|
" Files under pack/ and coc/extensions/node_modules/ have their own licenses.
|
2017-04-06 08:03:26 +00:00
|
|
|
"
|
|
|
|
" Includes parts from Tim Pope's «sensible.vim»
|
|
|
|
" <https://github.com/tpope/vim-sensible>.
|
|
|
|
|
2019-09-08 18:13:01 +00:00
|
|
|
"=============================================================================
|
2019-06-17 18:30:50 +00:00
|
|
|
" Set this first to avoid overwriting later settings.
|
|
|
|
set nocompatible
|
|
|
|
|
2019-09-08 18:13:01 +00:00
|
|
|
"=============================================================================
|
2017-04-10 13:04:34 +00:00
|
|
|
" Load Pathogen if Vim does not support packages.
|
2021-10-05 14:43:37 +00:00
|
|
|
if !has('packages')
|
2019-08-05 09:54:46 +00:00
|
|
|
runtime pack/acp/opt/vim-pathogen/autoload/pathogen.vim
|
|
|
|
execute pathogen#infect('pack/acp/start/{}')
|
2017-04-05 13:50:44 +00:00
|
|
|
endif
|
2015-10-13 10:01:04 +00:00
|
|
|
|
2019-09-08 18:13:01 +00:00
|
|
|
"=============================================================================
|
2017-04-10 13:04:34 +00:00
|
|
|
" General settings for all builds.
|
|
|
|
|
2020-10-30 13:39:46 +00:00
|
|
|
inoremap <C-BS> <C-W>
|
2020-10-30 13:40:17 +00:00
|
|
|
inoremap <C-a> <C-O>^
|
|
|
|
inoremap <C-e> <C-O>$
|
2020-10-28 12:38:31 +00:00
|
|
|
inoremap <F12> <C-\><C-O>:w<CR>
|
2022-06-07 09:33:23 +00:00
|
|
|
inoremap <F9> <C-R>=strftime('%Y-%m-%dT%H:%M')<CR>
|
2020-10-30 13:39:46 +00:00
|
|
|
inoremap <down> <nop>
|
|
|
|
inoremap <left> <nop>
|
2019-06-19 08:50:22 +00:00
|
|
|
inoremap <right> <nop>
|
2020-10-30 13:39:46 +00:00
|
|
|
inoremap <up> <nop>
|
2019-06-19 08:50:22 +00:00
|
|
|
|
2019-06-19 08:49:58 +00:00
|
|
|
nnoremap <F11> :Goyo<bar>:Limelight!!<CR>
|
2020-10-28 12:38:31 +00:00
|
|
|
nnoremap <F12> :w<CR>
|
2020-10-28 12:38:14 +00:00
|
|
|
nnoremap <F7> :setlocal spell! spelllang=en_gb<CR>
|
2020-10-30 13:39:46 +00:00
|
|
|
nnoremap <down> <nop>
|
|
|
|
nnoremap <left> <nop>
|
2020-10-28 12:38:14 +00:00
|
|
|
nnoremap <right> <nop>
|
2020-10-30 13:39:46 +00:00
|
|
|
nnoremap <up> <nop>
|
2019-06-27 14:26:10 +00:00
|
|
|
nnoremap gB :bprevious<CR>
|
|
|
|
nnoremap gb :bnext<CR>
|
2019-06-19 08:50:22 +00:00
|
|
|
|
2021-03-19 13:29:45 +00:00
|
|
|
" Text wrapping and margin settings. Setting tw=72 is ideal for emails or
|
|
|
|
" anything that will be read in a Terminal, while tw=100 is better for code or
|
2021-03-19 14:00:50 +00:00
|
|
|
" for general text that will be viewed in a GUI. If printing, an A4-sized
|
|
|
|
" page should fit 100 columns at 8pt or 80 columns at 10pt, in Courier or
|
|
|
|
" Liberation Mono fonts.
|
2021-12-31 13:47:57 +00:00
|
|
|
set colorcolumn=81 " Suggestions: 73, 81, 101
|
|
|
|
set textwidth=80 " Suggestions: 72, 80, 100
|
2021-03-19 13:29:45 +00:00
|
|
|
|
|
|
|
" All other settings.
|
2015-10-13 10:01:04 +00:00
|
|
|
set autoindent
|
2017-04-06 08:03:26 +00:00
|
|
|
set autoread
|
2022-04-08 19:46:31 +00:00
|
|
|
set background=light
|
2017-04-06 08:03:26 +00:00
|
|
|
set backspace=indent,eol,start
|
2021-03-09 22:15:25 +00:00
|
|
|
set cmdheight=1
|
2022-04-08 14:25:22 +00:00
|
|
|
set colorcolumn=73,81
|
2015-10-23 09:25:29 +00:00
|
|
|
set directory=$TEMP//,/tmp//,.
|
2017-04-06 08:03:26 +00:00
|
|
|
set display+=lastline
|
2015-10-19 11:52:42 +00:00
|
|
|
set encoding=utf-8
|
2021-11-15 19:29:32 +00:00
|
|
|
set formatoptions-=t
|
2021-03-09 22:15:25 +00:00
|
|
|
set hidden
|
2017-04-06 08:03:26 +00:00
|
|
|
set history=1000
|
2015-10-19 11:52:42 +00:00
|
|
|
set ignorecase
|
2017-04-06 08:03:26 +00:00
|
|
|
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
|
2022-06-09 08:55:48 +00:00
|
|
|
set listchars=tab:│ ,trail:·,extends:→,precedes:←,nbsp:␣
|
2019-06-17 08:38:01 +00:00
|
|
|
set modelines=0
|
2021-03-09 22:15:25 +00:00
|
|
|
set nobackup
|
2019-08-05 09:53:01 +00:00
|
|
|
set noexpandtab
|
2021-07-10 21:48:49 +00:00
|
|
|
set nojoinspaces
|
2019-06-17 08:38:01 +00:00
|
|
|
set nomodeline
|
2021-03-09 22:15:25 +00:00
|
|
|
set nowritebackup
|
2017-04-06 08:03:26 +00:00
|
|
|
set nrformats-=octal
|
2019-06-07 19:00:43 +00:00
|
|
|
set numberwidth=8
|
2015-10-19 11:52:42 +00:00
|
|
|
set relativenumber
|
2017-04-06 08:03:26 +00:00
|
|
|
set ruler
|
2020-10-30 11:23:23 +00:00
|
|
|
set scrolloff=2
|
2017-04-06 08:03:26 +00:00
|
|
|
set sessionoptions-=options
|
2020-10-30 13:36:11 +00:00
|
|
|
set shortmess+=c
|
2015-10-19 11:52:42 +00:00
|
|
|
set smartcase
|
2017-04-06 08:03:26 +00:00
|
|
|
set smarttab
|
2015-10-22 13:10:06 +00:00
|
|
|
set spl=en_gb nospell
|
2019-08-05 10:18:34 +00:00
|
|
|
set tabstop=8
|
2017-04-06 08:03:26 +00:00
|
|
|
set ttimeout
|
|
|
|
set ttimeoutlen=100
|
2015-10-19 11:52:42 +00:00
|
|
|
set ttyfast
|
2020-10-30 13:36:11 +00:00
|
|
|
set updatetime=300
|
2015-10-13 10:01:04 +00:00
|
|
|
set wrap
|
2017-04-10 11:33:26 +00:00
|
|
|
|
2019-09-08 18:13:01 +00:00
|
|
|
"=============================================================================
|
2017-04-10 13:04:34 +00:00
|
|
|
" General settings for non-minimal Vim builds.
|
|
|
|
|
2021-10-05 14:43:37 +00:00
|
|
|
if has('eval')
|
2019-08-05 09:54:46 +00:00
|
|
|
" Protect commands that are only available when +eval is enabled.
|
2021-10-05 14:43:37 +00:00
|
|
|
" Technically only 'if 1' would be required, as 'has()' is provided
|
2019-08-05 09:54:46 +00:00
|
|
|
" by +eval, but this is clearer.
|
|
|
|
command Q q
|
|
|
|
command W w
|
|
|
|
command WQ wq
|
2020-10-30 10:58:37 +00:00
|
|
|
command Wq wq
|
2019-08-05 09:54:46 +00:00
|
|
|
filetype plugin indent on
|
2019-09-16 08:51:09 +00:00
|
|
|
let g:ale_completion_enabled=1
|
|
|
|
let g:ale_sign_column_always=1
|
2020-10-28 13:36:05 +00:00
|
|
|
let g:go_def_mode='gopls'
|
|
|
|
let g:go_info_mode='gopls'
|
2019-08-05 09:54:46 +00:00
|
|
|
let g:go_version_warning=0
|
2021-05-17 09:19:59 +00:00
|
|
|
let g:goyo_width=100
|
2019-08-05 09:54:46 +00:00
|
|
|
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
|
|
|
|
let g:org_indent=0
|
|
|
|
let g:org_tag_column=78
|
2021-10-05 10:08:36 +00:00
|
|
|
let g:tempus_enforce_background_color=1
|
2019-08-05 09:54:46 +00:00
|
|
|
" Set colour levels for different terminals.
|
2022-01-05 14:32:34 +00:00
|
|
|
if &term == 'builtin_gui'
|
|
|
|
set t_Co=256
|
|
|
|
elseif &term == 'xterm-256color'
|
2019-08-05 09:54:46 +00:00
|
|
|
set t_Co=256
|
2021-10-05 14:43:37 +00:00
|
|
|
elseif &term == 'xterm'
|
2019-08-05 09:54:46 +00:00
|
|
|
set t_Co=256
|
2021-10-05 14:43:37 +00:00
|
|
|
elseif &term == 'rxvt-unicode'
|
2019-08-05 09:54:46 +00:00
|
|
|
set t_Co=256
|
|
|
|
else
|
|
|
|
set t_Co=16
|
|
|
|
endif
|
2021-05-02 20:52:15 +00:00
|
|
|
if &term =~# '256color' && ( &term =~# '^screen' || &term =~# '^tmux' )
|
2021-10-05 14:43:37 +00:00
|
|
|
let &t_8f = '\<Esc>[38;2;%lu;%lu;%lum'
|
|
|
|
let &t_8b = '\<Esc>[48;2;%lu;%lu;%lum'
|
2021-05-02 20:52:15 +00:00
|
|
|
set termguicolors
|
|
|
|
endif
|
2021-10-05 10:08:36 +00:00
|
|
|
"
|
|
|
|
" Set theme for Terminal.
|
2021-10-05 14:43:37 +00:00
|
|
|
if &term == 'linux'
|
2021-10-05 10:08:36 +00:00
|
|
|
" Dark for Linux console.
|
|
|
|
set background=dark
|
|
|
|
colorscheme tempus_night
|
|
|
|
else
|
|
|
|
" Light for all other consoles.
|
2022-04-08 19:46:31 +00:00
|
|
|
set background=dark
|
|
|
|
colorscheme tempus_night
|
2021-10-05 10:08:36 +00:00
|
|
|
endif
|
2017-04-06 08:03:26 +00:00
|
|
|
endif
|
|
|
|
|
2019-09-08 18:13:01 +00:00
|
|
|
"=============================================================================
|
2017-04-10 13:04:34 +00:00
|
|
|
" Settings based on feature detection.
|
|
|
|
|
2021-10-05 14:43:37 +00:00
|
|
|
if has('autocmd')
|
2022-01-10 11:08:46 +00:00
|
|
|
autocmd BufRead,BufNewFile * set omnifunc=syntaxcomplete#Complete
|
2019-09-08 18:14:11 +00:00
|
|
|
autocmd BufRead,BufNewFile *.go set noet sw=8 ts=8
|
|
|
|
autocmd BufRead,BufNewFile *.html set et sw=2
|
2020-11-30 13:12:28 +00:00
|
|
|
autocmd BufRead,BufNewFile *.md set et ft=markdown sw=2
|
2019-09-08 18:14:11 +00:00
|
|
|
autocmd BufRead,BufNewFile *.opml set et sw=2
|
2022-02-23 20:06:29 +00:00
|
|
|
autocmd BufRead,BufNewFile *.rs set et sw=4
|
2019-09-08 18:14:11 +00:00
|
|
|
autocmd BufRead,BufNewFile *.xml set et sw=2
|
2019-10-02 21:12:06 +00:00
|
|
|
autocmd BufRead,BufNewFile *.yaml set et sw=2
|
2019-09-08 18:14:11 +00:00
|
|
|
autocmd BufRead,BufNewFile *.yml set et sw=2
|
2017-04-10 12:50:30 +00:00
|
|
|
endif
|
|
|
|
|
2021-10-05 14:43:37 +00:00
|
|
|
if has('folding')
|
2019-08-05 09:54:46 +00:00
|
|
|
set nofoldenable
|
2017-02-22 09:51:33 +00:00
|
|
|
endif
|
|
|
|
|
2021-10-05 14:43:37 +00:00
|
|
|
if has('gui_running')
|
|
|
|
if has('gui_gtk')
|
2019-08-05 09:54:46 +00:00
|
|
|
set clipboard=unnamedplus
|
2021-09-26 19:20:09 +00:00
|
|
|
set guifont=Monospace\ 10
|
2021-10-05 14:43:37 +00:00
|
|
|
elseif has('gui_win32')
|
2019-08-05 09:54:46 +00:00
|
|
|
set clipboard=unnamed
|
2019-09-14 18:11:16 +00:00
|
|
|
set guifont=Consolas:h10:cANSI
|
2021-02-22 15:24:07 +00:00
|
|
|
set rop=type:directx
|
2019-08-05 09:54:46 +00:00
|
|
|
endif
|
2020-06-01 09:55:15 +00:00
|
|
|
set columns=132
|
2022-02-21 12:27:49 +00:00
|
|
|
set guioptions+=c
|
|
|
|
set guioptions+=m
|
|
|
|
set guioptions-=T
|
|
|
|
set guioptions-=f
|
2020-06-01 09:55:15 +00:00
|
|
|
set lines=43
|
2021-10-05 10:08:36 +00:00
|
|
|
"
|
|
|
|
" Set theme for GUI.
|
|
|
|
set background=light
|
|
|
|
colorscheme tempus_totus
|
2017-04-10 12:50:30 +00:00
|
|
|
endif
|
|
|
|
|
2021-10-05 14:43:37 +00:00
|
|
|
if has('patch-7.3.541')
|
2019-08-05 09:54:46 +00:00
|
|
|
set formatoptions+=j
|
2017-04-10 11:33:26 +00:00
|
|
|
endif
|
|
|
|
|
2021-10-05 14:43:37 +00:00
|
|
|
if has('patch-8.1.1564')
|
2020-10-30 13:36:11 +00:00
|
|
|
set signcolumn=number
|
|
|
|
else
|
|
|
|
set signcolumn=yes
|
|
|
|
endif
|
|
|
|
|
2022-06-09 08:55:48 +00:00
|
|
|
if has("patch-8.2.2454")
|
|
|
|
set listchars+=lead:·
|
|
|
|
endif
|
|
|
|
|
2021-10-05 14:43:37 +00:00
|
|
|
if has('printer')
|
2019-08-05 09:54:46 +00:00
|
|
|
set printheader=%t%h%m%=Page\ %N
|
|
|
|
set printoptions=paper:A4,number:y,syntax:n
|
2017-04-27 10:11:13 +00:00
|
|
|
endif
|
|
|
|
|
2021-10-05 14:43:37 +00:00
|
|
|
if has('smartindent')
|
2021-09-25 14:12:23 +00:00
|
|
|
set nosmartindent
|
2017-04-10 12:50:30 +00:00
|
|
|
endif
|
|
|
|
|
2021-10-05 14:43:37 +00:00
|
|
|
if has('syntax')
|
2019-08-05 09:54:46 +00:00
|
|
|
syntax on
|
2015-10-13 10:01:04 +00:00
|
|
|
endif
|
2017-04-06 08:03:26 +00:00
|
|
|
|
2021-10-05 14:43:37 +00:00
|
|
|
if has('viminfo')
|
2019-08-23 22:09:07 +00:00
|
|
|
set viminfo="NONE"
|
|
|
|
endif
|
|
|
|
|
2021-10-05 14:43:37 +00:00
|
|
|
if has('wildmenu')
|
2019-08-23 22:09:07 +00:00
|
|
|
set wildmenu
|
|
|
|
endif
|
|
|
|
|
2022-01-10 11:08:46 +00:00
|
|
|
if has('nvim')
|
|
|
|
" Neovim config.
|
|
|
|
packadd! nvim-lspconfig
|
|
|
|
lua << __EOF__
|
|
|
|
local servers = { 'clangd', 'gopls', 'rls' }
|
|
|
|
for _, lsp in ipairs(servers) do
|
|
|
|
require('lspconfig')[lsp].setup {
|
|
|
|
on_attach = on_attach,
|
|
|
|
flags = {
|
|
|
|
debounce_text_changes = 150,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
__EOF__
|
|
|
|
autocmd BufRead,BufNewFile * set omnifunc=v:lua.vim.lsp.omnifunc
|
|
|
|
endif
|
|
|
|
|
2022-03-08 16:34:44 +00:00
|
|
|
" Keep this as the last config line in the file.
|
|
|
|
runtime vimrc.local
|
|
|
|
|
2019-09-08 18:13:01 +00:00
|
|
|
"=============================================================================
|
2017-04-10 13:04:34 +00:00
|
|
|
" End of config file.
|
2019-08-05 09:53:01 +00:00
|
|
|
" vim:set ft=vim:
|