dotfiles/.vimrc

112 lines
2.9 KiB
VimL
Raw Normal View History

2020-05-25 15:51:47 +00:00
" Basic vim settings
set title
set number
2020-03-30 06:56:05 +00:00
set laststatus=2
set encoding=utf-8
set autoindent
2020-07-08 15:19:37 +00:00
set nocompatible
syntax on
2020-07-10 08:23:39 +00:00
let mapleader=","
2020-03-30 06:56:05 +00:00
filetype indent plugin on
" Global tab settings
2020-03-30 06:56:05 +00:00
set tabstop=4
set shiftwidth=4
set softtabstop=4
2020-03-30 06:56:05 +00:00
set expandtab
2020-07-10 08:23:39 +00:00
" Pathogen
execute pathogen#infect()
" vimwiki
let wiki_1 = {}
let wiki_1.path = '~/Nextcloud/vimwiki'
let wiki_1.syntax = 'markdown'
let wiki_1.ext = '.md'
let wiki_2 = {}
let wiki_2.path = '~/Nextcloud/vimwiki/suse'
let wiki_2.syntax = 'markdown'
let wiki_2.ext = '.md'
let wiki_3 = {}
let wiki_3.path = '~/Nextcloud/vimwiki/private'
let wiki_3.syntax = 'markdown'
let wiki_3.ext = '.md'
let g:vimwiki_list = [wiki_1, wiki_2, wiki_3]
" Set to show invisibles (tabs & trailing spaces) & their highlight color
set list listchars=tab:»\ ,trail
2020-03-30 06:56:05 +00:00
2020-07-10 08:23:39 +00:00
" Mark characters 80+ on each line with red color
2020-05-29 05:36:04 +00:00
function! Highlight()
highlight OverLength ctermbg=red ctermfg=white guibg=#592929
match OverLength /\%81v.\+/
endfunction
2020-07-10 08:23:39 +00:00
" remaps
noremap <Leader>_h :call Highlight()<CR>
nmap <F2> i**<C-R>=strftime("%Y-%m-%d %H:%M:%S")<CR>**<CR><CR><Esc>
imap <F2> **<C-R>=strftime("%Y-%m-%d %H:%M:%S")<CR>**<CR><CR>
nmap <F8> c~<c-r>"~
2020-05-24 13:07:25 +00:00
2020-03-30 06:56:05 +00:00
""""""""""""""""""""
" GnuPG Extensions "
""""""""""""""""""""
" sudo zypper install vim-plugin-gnupg
let g:GPGDefaultRecipients=[
\"Jonas Forsberg <jonas@forsberg.co>",
\"Jonas Forsberg <jonas.forsberg@suse.com>"
\]
" Tell the GnuPG plugin to armor new files.
let g:GPGPreferArmor=1
" Tell the GnuPG plugin to sign new files.
let g:GPGPreferSign=1
augroup GnuPGExtra
" Set extra file options.
autocmd BufReadCmd,FileReadCmd *.\(gpg\|asc\|pgp\) call SetGPGOptions()
" Automatically close unmodified files after inactivity.
autocmd CursorHold *.\(gpg\|asc\|pgp\) quit
augroup END
function SetGPGOptions()
" Set updatetime to 1 minute.
set updatetime=60000
" Fold at markers.
set foldmethod=marker
" Automatically close all folds.
set foldclose=all
" Only open folds with insert commands.
set foldopen=insert
endfunction
2020-05-22 09:12:55 +00:00
if has("autocmd")
" To spell check all git commit messages
au BufNewFile,BufRead COMMIT_EDITMSG set spelllang=en_us spell nonumber nolist wrap linebreak
2020-06-05 10:53:40 +00:00
" To spell check all Markdown files
autocmd FileType markdown setlocal spell
autocmd BufRead,BufNewFile *.rst setlocal spell
" Set filetype tab settings
autocmd FileType python,doctest set ai ts=4 sw=4 sts=4 et
endif
2020-07-10 08:23:39 +00:00
" vim-instant-markdown settings
"Uncomment to override defaults:
let g:instant_markdown_slow = 0
let g:instant_markdown_autostart = 0
let g:instant_markdown_open_to_the_world = 0
let g:instant_markdown_allow_unsafe_content = 0
let g:instant_markdown_allow_external_content = 1
"let g:instant_markdown_mathjax = 1
"let g:instant_markdown_browser = "firefox --new-window"
"let g:instant_markdown_logfile = '/tmp/instant_markdown.log'
"let g:instant_markdown_autoscroll = 0
"let g:instant_markdown_port = 8888
"let g:instant_markdown_python = 1