rcfiles/.vimrc

170 lines
5.2 KiB
VimL
Raw Normal View History

2019-06-12 01:18:28 +00:00
"" Preferred global default settings:
2016-01-22 03:36:44 +00:00
set number
set background=dark
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
syntax enable
2016-08-26 01:04:46 +00:00
colorscheme solarized
2019-01-18 01:01:48 +00:00
set t_Co=256 " use 265 colors in vim
" hi Normal guibg=NONE ctermbg=NONE
2019-06-12 01:18:28 +00:00
hi SpellBad cterm=underline
2016-01-22 03:36:44 +00:00
match ErrorMsg '\s\+$'
2016-01-22 03:42:10 +00:00
2019-01-18 01:01:48 +00:00
set rtp+=/run/current-system/sw/share/vim-plugins/vim-airline
set rtp+=/run/current-system/sw/share/vim-plugins/vim-airline-themes
set rtp+=/run/current-system/sw/share/vim-plugins/neocomplete-vim
let g:airline_powerline_fonts = 1
let g:airline_theme='solarized'
set laststatus=2
call togglebg#map("<F10>")
2016-03-28 06:40:36 +00:00
" Set up the status line so it's colored and always on
set laststatus=2
2019-01-18 01:01:48 +00:00
" highlight StatusLine cterm=none ctermbg=black ctermfg=244
"highlight StatusLineNC cterm=none ctermbg=black ctermfg=244
"highlight VertSplit cterm=none ctermbg=black ctermfg=244
"highlight LineNr cterm=none ctermbg=black ctermfg=244
2016-03-28 06:40:36 +00:00
2016-01-22 03:42:10 +00:00
" Removes trailing spaces:
2016-01-22 03:36:44 +00:00
function! TrimWhiteSpace()
%s/\s\+$//e
endfunction
nnoremap <silent> <Leader>RemoveTrailingWhiteSpace :call TrimWhiteSpace()<CR>
autocmd FileWritePre * :call TrimWhiteSpace()
autocmd FileAppendPre * :call TrimWhiteSpace()
autocmd FilterWritePre * :call TrimWhiteSpace()
autocmd BufWritePre * :call TrimWhiteSpace()
2016-04-04 04:04:59 +00:00
" Transparent editing of gpg encrypted files.
" By Wouter Hanegraaff <wouter@blub.net>
augroup encrypted
au!
" First make sure nothing is written to ~/.viminfo while editing
" an encrypted file.
autocmd BufReadPre,FileReadPre *.gpg set viminfo=
" We don't want a swap file, as it writes unencrypted data to disk
autocmd BufReadPre,FileReadPre *.gpg set noswapfile
" Switch to binary mode to read the encrypted file
autocmd BufReadPre,FileReadPre *.gpg set bin
autocmd BufReadPre,FileReadPre *.gpg let ch_save = &ch|set ch=2
autocmd BufReadPost,FileReadPost *.gpg '[,']!gpg --decrypt 2> /dev/null
" Switch to normal mode for editing
autocmd BufReadPost,FileReadPost *.gpg set nobin
autocmd BufReadPost,FileReadPost *.gpg let &ch = ch_save|unlet ch_save
autocmd BufReadPost,FileReadPost *.gpg execute ":doautocmd BufReadPost " . expand("%:r")
" Convert all text to encrypted text before writing
autocmd BufWritePre,FileWritePre *.gpg '[,']!gpg --default-key=04CE4B93 --default-recipient-self -ae 2>/dev/null
" Undo the encryption so we are back in the normal text, directly
" after the file has been written.
autocmd BufWritePost,FileWritePost *.gpg u
augroup END
2016-01-22 03:42:10 +00:00
" Add files ending in md to the list of files recognised as markdown:
2016-01-22 03:36:44 +00:00
autocmd BufNewFile,BufFilePre,BufRead *.md set filetype=markdown
2016-02-01 02:44:51 +00:00
" My Markdown environment
function! MarkdownSettings()
set textwidth=79
set spell spelllang=en_au
2016-02-01 02:44:51 +00:00
endfunction
autocmd BufNewFile,BufFilePre,BufRead *.mdwn :call MarkdownSettings()
2017-08-29 10:24:15 +00:00
autocmd BufNewFile,BufFilePre,BufRead *.md :call MarkdownSettings()
2016-02-01 02:44:51 +00:00
2016-02-15 04:47:30 +00:00
" My ReStructured Text environment
function! ReStructuredSettings()
set textwidth=79
set spell spelllang=en_au
2016-02-15 04:47:30 +00:00
endfunction
autocmd BufNewFile,BufFilePre,BufRead *.rst :call ReStructuredSettings()
2016-10-27 09:39:51 +00:00
autocmd BufNewFile,BufFilePre,BufRead *.txt :call ReStructuredSettings()
2016-02-15 04:47:30 +00:00
2016-03-28 06:12:31 +00:00
" My LaTeX environment:
function! LaTeXSettings()
set textwidth=79
set spell spelllang=en_au
endfunction
autocmd BufNewFile,BufFilePre,BufRead *.tex :call LaTeXSettings()
2016-01-22 03:42:10 +00:00
" Settings for my Haskell environment:
2016-01-22 03:36:44 +00:00
function! HaskellSettings()
set tabstop=4
set shiftwidth=4
2016-01-22 03:36:44 +00:00
set expandtab
set textwidth=79
2016-01-22 03:36:44 +00:00
endfunction
autocmd BufNewFile,BufFilePre,BufRead *.hs :call HaskellSettings()
2016-01-22 03:42:10 +00:00
" Settings for my Golang environment:
2016-01-22 03:36:44 +00:00
function! GoSettings()
set tabstop=7
set shiftwidth=7
set noexpandtab
endfunction
autocmd BufNewFile,BufFilePre,BufRead *.go :call GoSettings()
2016-01-22 03:42:10 +00:00
" Settings for my Python environment:
2016-01-22 03:36:44 +00:00
function! PythonSettings()
set tabstop=4
set shiftwidth=4
set expandtab
set textwidth=79
2016-01-22 04:57:14 +00:00
set spell!
2016-01-22 03:36:44 +00:00
endfunction
autocmd BufNewFile,BufFilePre,BufRead *.py :call PythonSettings()
2016-08-26 01:04:46 +00:00
" My Mutt environment
function! MuttSettings()
set textwidth=79
set spell spelllang=en_au
2019-06-12 01:18:28 +00:00
"set tabstop=4
"set shiftwidth=4
"set expandtab
2016-08-26 01:04:46 +00:00
endfunction
2019-01-18 01:01:48 +00:00
autocmd BufNewFile,BufFilePre,BufRead /tmp/mutt-* :call MuttSettings()
2019-02-24 02:17:41 +00:00
autocmd BufNewFile,BufFilePre,BufRead /tmp/neomutt-* :call MuttSettings()
2016-08-26 01:04:46 +00:00
2016-10-27 09:39:51 +00:00
" Settings for my C environment:
function! CSettings()
set tabstop=2
set shiftwidth=2
set expandtab
set textwidth=79
endfunction
autocmd BufNewFile,BufFilePre,BufRead *.c :call CSettings()
2018-01-07 20:40:43 +00:00
" Settings for my YAML environment:
function! YAMLSettings()
set tabstop=2
set shiftwidth=2
set expandtab
set textwidth=79
endfunction
autocmd BufNewFile,BufFilePre,BufRead *.yaml :call YAMLSettings()
2018-01-17 06:29:03 +00:00
2018-01-17 06:41:46 +00:00
" Settings for my Bash environment:
2018-01-17 06:29:03 +00:00
function! BashSettings()
set tabstop=4
set shiftwidth=4
set expandtab
set textwidth=79
set spell!
endfunction
autocmd BufNewFile,BufFilePre,BufRead *.sh :call BashSettings()
2018-01-17 06:41:46 +00:00
" My Bzr commit environment
function! BzrSettings()
set textwidth=79
set spell spelllang=en_au
set tabstop=4
set shiftwidth=4
set expandtab
endfunction
autocmd BufNewFile,BufFilePre,BufRead bzr_* :call BzrSettings()