" General Options {{{1 " ==================== set nocompatible " ignored in NeoVim, tells Vim to break compatibility with vi let mapleader=';' " set syntax enable set mouse=a " enable mouse selection set splitright " open new splits on the right set splitbelow " open new splits below set scrolloff=4 " keep the cursor 4 lines away from the top/bottom set ruler " show the lines/% bottom right set showcmd " show the commands while typing set laststatus=2 " always show the status line set encoding=utf-8 " set default encoding set autoread " autoreload file on change set nomodeline " after the latest modeline vulnerability I've had it set inccommand=split " live previews of search-and-replace s/// set conceallevel=0 " don't use conceals, seriously let g:tex_conceal='' " I said no conceals "set shell=/bin/zsh " use zsh instead of bash set number " line numbers on the left side "set relativenumber " number+relativenumber = relative numbers for all but current line " toggle hybrid relative numbers when entering/leaving insert mode ":augroup numbertoggle ": autocmd! ": autocmd InsertLeave * set relativenumber ": autocmd InsertEnter * set norelativenumber ":augroup END " use the nice `par` program to wrap lines at 99 characters " TODO pass the current textwidth to par? "set formatprg=par\ -w99 set formatoptions=tcrqnlmj set textwidth=99 set ignorecase smartcase " don't match case if typing in all-lowercase " Ctrl+Backspace deletes previous word like in most text editors inoremap   inoremap  iab heigth height iab heihgt height iab heihtg height iab heitgh height iab heithg height iab Heigth Height iab Heihgt Height iab Heihtg Height iab Heitgh Height iab Heithg Height iab HEIGTH HEIGHT iab HEIHGT HEIGHT iab HEIHTG HEIGHT iab HEITGH HEIGHT iab HEITHG HEIGHT " Useless mode that I only activate accidentally nnoremap Q " ABC macro to align system nmap A mb?%jV/%k;a*[^:.]\zs\|\ze`b nmap q v3j nmap Q v3jA " Set terminal title {{{2 " From eevee's dotfiles set titlestring=vim\ %{expand(\"%t\")} if $TERM =~ "^screen" " pretend this is xterm. if term is left as `screen`, vim doesn't understand ctrl-arrow. if $TERM == "screen-256color" set term=xterm-256color else set term=xterm endif " gotta set these *last*, since `set term` resets everything set t_ts=k set t_fs=\ endif set title " Remove trailing whitespace on save {{{2 fun! CleanExtraSpaces() let save_cursor = getpos(".") let old_query = getreg('/') silent! %s/\s\+$//e call setpos('.', save_cursor) call setreg('/', old_query) endfun if has("autocmd") autocmd BufWritePre *.txt,*.js,*.py,*.wiki,*.sh,*.coffee,*.css,*.scss,*.html :call CleanExtraSpaces() endif " Filetype au BufRead,BufNewFile *.mapcss set filetype=css " Switching buffers {{{2 nnoremap :bprev " s-F2 nnoremap :bnext " s-F3 nnoremap :bwipeout " s-F4 " Indentation {{{2 set tabstop=3 " tab is 3 wide set shiftwidth=3 " for use with > and < set noexpandtab " tab key puts tabs set copyindent " when opening new line, indent with same characters "set list listchars=tab:‧\ ,trail:· " display tabs with a leading \cdot. Alternatives: \mapsto ↦, U+16EB runic single punctuation ᛫ " trailing whitespace looks like \cdot set list listchars=tab:¦\ ,trail:· " show indentation lines for tabs, trailing whitespace looks like \cdot " Ignore motion for < > nnoremap < << nnoremap > >> " Make < > shifts keep selection vnoremap < >gv " Folds {{{2 set foldmethod=marker set foldlevelstart=2 " Not too much folding nnoremap @=(foldlevel('.')?'za':"\") vnoremap zf " {{{2 function! s:line_handler(l) let keys = split(a:l, ':\t') exec 'buf' keys[0] exec keys[1] normal! ^zz endfunction function! s:buffer_lines() let res = [] for b in filter(range(1, bufnr('$')), 'buflisted(v:val)') call extend(res, map(getbufline(b,0,"$"), 'b . ":\t" . (v:key + 1) . ":\t" . v:val ')) endfor return res endfunction command! FZFLines call fzf#run({ \ 'source': buffer_lines(), \ 'sink': function('line_handler'), \ 'options': '--extended --nth=3..', \ 'down': '60%' \}) " Misc {{{2 " Change cursor shape according to mode :let $NVIM_TUI_ENABLE_CURSOR_SHAPE=1 " Escape from NeoVim terminals tnoremap " Just hit the [à0] button on an AZERTY, no need to do shift+à to for 0 nnoremap à 0 inoremap jj " Clear highlighting after a search nnoremap n :noh " Open a file in the current directory nmap e :e =expand("%:p:h") . "/" " sudo save command W :execute ':silent w !sudo tee % > /dev/null' | :edit! " Navigate to bookmark, AZERTY has no backtick key noremap m ` inoremap :w :w inoremap :q :q " Consistent aliases to jump to first non-whitespace character and last character noremap ^ noremap $ inoremap ^i inoremap $a noremap ^ inoremap ^i " System clipboard {{{2 " Copy to clipboard " Paste from clipboard vnoremap y "+y | vnoremap d "+d | nnoremap p "+p nnoremap Y "+yg_ | nnoremap D "+dg_ | nnoremap P "+P nnoremap y "+y | nnoremap y "+d | vnoremap p "+p nnoremap yy "+yy | nnoremap dd "+dd | vnoremap P "+P " Moving across windows {{{2 nnoremap j nnoremap k nnoremap l nnoremap h vmap " Opening windows {{{2 nnoremap n nnoremap v nnoremap q nnoremap v :vnew nnoremap V :let spr=&sprset nosprvnewlet &spr=spr nnoremap N :let spr=&sprset nosprnewlet &spr=spr " Cool characters {{{2 inoremap akl ↗ | inoremap alk ↗ inoremap ajl ↘ | inoremap alj ↘ inoremap ajh ↙ | inoremap ahj ↙ inoremap akh ↖ | inoremap ahk ↖ inoremap ajk ↕ | inoremap akj ↕ inoremap ahl ↔ | inoremap alh ↔ inoremap dah ⇠ inoremap daj ⇣ inoremap dak ⇡ inoremap dal ⇢ inoremap aahh ⇐ inoremap aajj ⇓ inoremap aakk ⇑ inoremap aall ⇒ inoremap aakl ⇗ | inoremap aalk ⇗ inoremap aajl ⇘ | inoremap aalj ⇘ inoremap aajh ⇙ | inoremap aahj ⇙ inoremap aakh ⇖ | inoremap aahk ⇖ inoremap aajk ⇕ | inoremap aakj ⇕ inoremap aahl ⇔ | inoremap aalh ⇔ inoremap forall ∀ inoremap exists ∃ inoremap nexists ∄ inoremap _\|_ ⊥ inoremap -\|- ⊤ inoremap \|- ⊢ inoremap -\| ⊣ inoremap int ∫ inoremap sum ∑ nnoremap r :%s/\<\>/ vnoremap r "hy:%s/y/ " Default visual block {{{2 nnoremap v nnoremap v " Spell check {{{2 " ================ set spelllang=en_uk,nl set spellfile=$HOME/.local/share/nvim/spellfile.utf-8.add inoremap u[s1z=`]au "nnoremap m][s1z=`] augroup spellcheck_textfiles au! BufNewFile,BufRead *.md,*.txt,*.tex setlocal spell augroup END "let g:opamshare = substitute(system('opam config var share'),'\n$','','''') "augroup ocaml_support "au! BufNewFile,BufRead *.ml execute "set rtp+=" . g:opamshare . "/merlin/vim" "augroup END augroup json_prettyprint au! BufNewFile,BufRead *.json,*.geojson nnoremap ;ff :%!python -m json.tool \| sed -r ':begin;s/^(\t*) /\1\t/;t begin' augroup END " Keep undo history {{{2 " ====================== let g:euid = substitute(system('echo $EUID'),'\n$','','''') execute "set undodir=/tmp/vim-undodir-" . g:euid set undofile execute "set directory^=/tmp/vim-swapfile-" . g:euid . "//" " Plug-ins {{{1 " ============= " Plug {{{2 " ------------ call plug#begin('~/.config/nvim/plug') " View "Plug 'chriskempson/base16-vim' Plug 'rakr/vim-one' "Plug 'Yggdroot/indentLine' " display the indention levels with thin vertical lines " Language support Plug 'sheerun/vim-polyglot' " color, indentation support for 100+ languages Plug 'chrisbra/csv.vim', { 'for': 'csv' } " CSV files "Plug 'neovimhaskell/haskell-vim', { 'for': 'haskell' } " included in vim-polyglot "Plug 'LaTeX-Box-Team/LaTeX-Box', { 'for': 'tex' } " included in vim-polyglot "Plug 'rust-lang/rust.vim', { 'for': 'rust' } " included in vim-polyglot Plug 'ap/vim-css-color' " CSS color names "Plug 'Twinside/vim-hoogle' " search on hoogle Plug 'ledger/vim-ledger', { 'for': ['journal'] } " accounting with ledger Plug 'freitass/todo.txt-vim', Plug 'gentoo/gentoo-syntax' " C/C++ "Plug 'vim-scripts/c.vim', { 'for': ['c', 'cpp', 'objc'] } " various IDE-like C features Plug 'vim-scripts/DoxygenToolkit.vim', { 'for': ['c', 'cpp', 'python'] } " simplify Doxygen documentation in C, C++, Python "Plug 'derekwyatt/vim-fswitch', { 'for': ['c', 'cpp', 'objc'] } " switch between companion source files (e.g. .h and .cpp) Plug 'derekwyatt/vim-fswitch', { 'on': 'FSRight' } " switch between companion source files (e.g. .h and .cpp) "Plug 'derekwyatt/vim-protodef', { 'for': ['c', 'cpp', 'objc'] } " pull in C++ function prototypes into implementation files "Plug 'vim-scripts/Conque-GDB', { 'for': ['c', 'cpp', 'objc'] } " GDB command line interface and terminal emulator Plug 'Shougo/vimproc.vim', { 'do': 'make' } " dependency of vim-vebugger, asynchronous execution library Plug 'idanarye/vim-vebugger', { 'for': ['c', 'cpp', 'objc', 'java', 'python', 'ruby'] } " debugger frontend for GDB, LDB, PDB, RDebug e.a. " Edit "Plug 'jiangmiao/auto-pairs' " insert or delete [], (), '' etc. in pairs Plug 'sjl/gundo.vim' " visualise your undo tree Plug 'scrooloose/nerdcommenter' " intensely orgasmic commenting Plug 'SirVer/ultisnips' " ultimate snippet solution Plug 'fadein/vim-FIGlet', { 'on': 'FIGlet' } " ASCII art Plug 'honza/vim-snippets' " snippets for ultisnips Plug 'junegunn/vim-easy-align' " easily align text in Alexander Approved™ ways Plug 'matze/vim-move' " move lines and selections up and down "Plug 'kana/vim-operator-user' " define your own operator easily "Plug 'junegunn/vim-peekaboo' " preview registers when pressing \" or @ Plug 'gcmt/wildfire.vim' " smart selection of the closest text object "Plug 'Valloric/YouCompleteMe', { 'for': ['c', 'cpp', 'python', 'haskell', 'zig'], 'do': 'git submodule update --init --recursive && ./install.py --system-libclang --system-abseil --system-boost --clang-completer --ts-completer' } " code-completion engine Plug 'Valloric/YouCompleteMe', { 'do': 'git submodule update --init --recursive && ./install.py --system-libclang --system-abseil --system-boost --clang-completer --ts-completer' } " code-completion engine Plug 'Shougo/deoplete.nvim', { 'for': ['ocaml', 'mail'], 'do': ':UpdateRemotePlugins' } " code-completion engine "Plug 'deoplete-plugins/deoplete-jedi', { 'for': ['python'], 'do': 'git submodule update --init' } " complete python "Plug 'Shougo/deoplete-clangx', { 'for': ['c', 'cpp', 'objc'] } " complete C, C++, Objective-C Plug 'copy/deoplete-ocaml', { 'for': ['ocaml'] } " complete OCaml Plug 'Shougo/neco-syntax' " complete based on syntax files Plug 'paretje/deoplete-notmuch', { 'for': 'mail' } " complete addresses from notmuch "Plug 'Thyrum/vim-stabs' Plug 'tpope/vim-speeddating' " increment dates and more with Ctrl-A/Ctrl-X " Navigation Plug 'ctrlpvim/ctrlp.vim' " fuzzy file, buffer, mru, tag, etc. finder Plug 'dyng/ctrlsf.vim' " search for code, edit it in-place, have multiple cursors Plug 'scrooloose/nerdtree' " filesystem tree explorer "Plug 'majutsushi/tagbar' " display tags in a window, ordered by scope Plug 'easymotion/vim-easymotion' " quickly jump to any location on the screen Plug 'airblade/vim-gitgutter' " show a Git diff in the gutter, stage/undo hunks "Plug 'mhinz/vim-grepper', { 'on': 'Grepper' } " asynchronous git grep search "Plug 'ludovicchabant/vim-gutentags' " unobtrusively manage tag files "Plug 'tpope/vim-obsession' " continuously updated session files "" Powerline Plug 'vim-airline/vim-airline' " statusline plugin in pure Vimscript Plug 'vim-airline/vim-airline-themes' " themes for airline " Analysis Plug 'w0rp/ale' " asynchronous linting engine "Plug 'dbmrq/vim-ditto' " highlight overused words Plug 'janko-m/vim-test' " testing " Misc Plug 'editorconfig/editorconfig-vim' " per-project modeline-like configuration "Plug 'kassio/neoterm', { 'on': 'T' } " wrapper of some neovim's :terminal functions "Plug 'tpope/vim-fugitive' " a Git wrapper "Plug 'vim-scripts/TeTrIs.vim' " Tetris clone call plug#end()" " One {{{2 " -------- set termguicolors set cursorline let g:one_allow_italics = 1 colorscheme one set background=dark "set background=light hi Normal guibg=NONE ctermbg=NONE hi SpellBad guibg=NONE ctermbg=NONE hi Comment guifg=#888888 hi link Whitespace Conceal hi CursorLine guibg=NONE ctermbg=NONE hi CursorLineNr guibg=NONE ctermbg=NONE "hi Folded guifg=#3b4048 ctermfg=16 guibg=NONE ctermbg=NONE gui=italic cterm=italic hi Folded gui=bold cterm=bold " Haskell {{{2 " ------------ let g:haskell_enable_quantification=1 let g:haskell_enable_recursivedo=1 let g:haskell_enable_arrowsyntax=1 let g:haskell_enable_pattern_synonyms=1 let g:haskell_enable_typeroles=1 let g:haskell_enable_static_pointers=1 " Python {{{2 " ----------- " Fuck PEP 8, tabs are better let g:python_recommended_style = 0 " Rust {{{2 " --------- " As with Python, fuck spaces let g:rust_recommended_style = 0 setlocal textwidth=99 " Markdown {{{2 " ------------- let g:vim_markdown_conceal = 0 let g:markdown_folding = 1 " CSV.vim {{{2 " ------------ " CSS colors {{{2 " --------------- " Doxygen {{{2 " ------------ nnoremap df :Dox nnoremap dl :DoxLic nnoremap da :DoxAuthor let g:DoxygenToolkit_authorName="Midgard" " FSwitch {{{2 " ------------ let b:fswitchdst = '' au! BufEnter *.cpp let b:fswitchdst = 'hpp,h' | let b:fswitchlocs = '.,reg:/src/include/' au! BufEnter *.hpp let b:fswitchdst = 'cpp' | let b:fswitchlocs = '.,reg:/include/src/' au! BufEnter *.c let b:fswitchdst = 'h' | let b:fswitchlocs = '.,reg:/src/include/' au! BufEnter *.h let b:fswitchdst = 'c,cpp' | let b:fswitchlocs = '.,reg:/include/src/' nmap :FSRight " Protodef {{{2 " ------------- nnoremap ;def :call protodef#ReturnSkeletonsFromPrototypesForCurrentBuffer({}) " ConqueGDB {{{2 " -------------- "let g:ConqueGdb_Leader = ',' "" Commented entries are the defaults ""let g:ConqueGdb_Run = g:ConqueGdb_Leader . 'r' ""let g:ConqueGdb_Continue = g:ConqueGdb_Leader . 'c' "let g:ConqueGdb_Next = g:ConqueGdb_Leader . 'o' " step over "let g:ConqueGdb_Step = g:ConqueGdb_Leader . 'i' " step in ""let g:ConqueGdb_Print = g:ConqueGdb_Leader . 'p' ""let g:ConqueGdb_ToggleBreak = g:ConqueGdb_Leader . 'b' "let g:ConqueGdb_Finish = g:ConqueGdb_Leader . 'O' " step out ""let g:ConqueGdb_Backtrace = g:ConqueGdb_Leader . 't' "nnoremap :ConqueGdb --args build/simulation --debug " Vebugger {{{2 " ------------- "let g:vebugger_leader='v' let g:vebugger_leader=',' " "nnoremap :VBGstepOver "nnoremap :VBGstepIn "nnoremap :VBGstepOut "nnoremap :VBGcontinue "nnoremap :VBGstartGDB ./huffman " Auto-pairs {{{2 " --------------- " Gundo {{{2 " ---------- nnoremap :GundoToggle let g:gundo_prefer_python3 = 1 " NERDCommenter {{{2 " ------------------ nmap & c vmap & c " UltiSnips {{{2 " --------------- let g:UltiSnipsExpandTrigger='' let g:UltiSnipsJumpForwardTrigger="" let g:UltiSnipsJumpBackwardTrigger="" let g:UltiSnipsSnippetDir=[$HOME.'/.config/nvim/ultisnips'] let g:UltiSnipsSnippetDirectories=[$HOME.'/.config/nvim/ultisnips'] let g:UltiSnipsEditSplit="context" " EasyAlign {{{2 " -------------- xmap a (EasyAlign) nmap a (EasyAlign) " Move (lines) {{{2 " ----------------- " Operator user {{{2 " ------------------ " Peekaboo {{{2 " ------------- " Wildfire {{{2 " ------------- "nmap s (wildfire-quick-select) let g:wildfire_objects = ["iw", "i'", "i`", 'i"', "i)", "i]", "i}", "ip", "it"] " YouCompleteMe {{{2 " ------------------ noremap g :YcmCompleter GoToImprecise noremap gg :YcmCompleter GoTo noremap gi :YcmCompleter GoToImprecise noremap gf :YcmCompleter FixIt noremap st :YcmCompleter GetType noremap si :YcmCompleter GetTypeImprecise let g:ycm_enable_diagnostic_highlighting=0 let g:ycm_complete_in_comments=1 let g:ycm_seed_identifiers_with_syntax=1 let g:ycm_collect_identifiers_from_tags_files=1 let g:ycm_add_preview_to_completeopt=1 let g:ycm_autoclose_preview_window_after_insertion=1 let g:ycm_server_python_interpreter='/usr/bin/python3' let g:ycm_global_ycm_extra_conf='~/.config/nvim/ycm_extra_conf.py' let g:ycm_extra_conf_globlist = ['~/dev/*'] " ,'!~/*' "let g:ycm_rust_src_path='/data/programming/rustc-1.7.0/src' set completeopt=menu let g:ycm_language_server = \ [ \ { \ 'name': 'zls', \ 'filetypes': [ 'zig' ], \ 'cmdline': [ '/home/ruben/.config/nvim/lsp/zls/zig-out/bin/zls' ] \ } \ ] " deoplete {{{2 " ------------- if exists('g:loaded_deoplete') let g:deoplete#enable_at_startup = 1 let g:python3_host_prog = "/usr/bin/python3" call deoplete#custom#option({ \ 'camel_case': v:true, \ 'smart_case': v:true, \ }) set completeopt=menu,preview set completeopt-=noinsert inoremap  endif " CtrlP {{{2 " ---------- "let g:ctrlp_map='' let g:ctrlp_map='' let g:ctrlp_user_command=['.git/', 'git --git-dir=%s/.git ls-files . -co --exclude-standard'] nnoremap s :CtrlPTag" " Ctrl-S-F {{{2 " ------------- nmap f CtrlSFPrompt nmap f vmap f CtrlSFVwordExec vmap f vmap F CtrlSFVwordPath nmap w CtrlSFCwordPath nmap W CtrlSFCCwordPath nmap CtrlSFPwordPath nnoremap o :CtrlSFOpen nnoremap t :CtrlSFToggle inoremap t :CtrlSFToggle nnoremap l mx:FZFLines let g:ctrlsf_regex_pattern = 1 " IndentLine {{{2 " --------------- " NERDTree {{{2 " ------------- nnoremap T :NERDTreeToggle nnoremap ² :NERDTreeFind let NERDTreeIgnore=[ \ "^__pycache__$", \ ".*\\.class$", \ ".*\\.o$", \ ".*\\.hi$", \ ".*\\.pyc$", \ ".*\\.bak$", \ ".*\\.ozf$", \ ".*\\~$" \ ] " automatically open NERDTree when opening vi "autocmd StdinReadPre * let s:std_in=1 "autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif " Tagbar {{{2 " ----------- nnoremap o :Tagbar let g:tagbar_autoclose=1 let g:tagbar_autofocus=1 let g:tagbar_sort=0 let g:tagbar_compact=1 let g:tagbar_iconchars=['▸', '▾'] let g:tagbar_type_make={ \ 'kinds': ['m:macros', 't:targets'] \ } let g:tagbar_type_rust={ \ 'ctagstype': 'rust', \ 'kinds': [ \ 'n:modules', \ 's:structs', \ 'i:interfaces', \ 'c:implementations', \ 'f:functions', \ 'g:enums', \ 't:typedefs', \ 'v:variables', \ 'M:macros', \ 'm:fields', \ 'e:enumerators', \ 'F:methods', \ ] \ } " EasyMotion {{{2 " --------------- let g:EasyMotion_do_mapping=0 let g:EasyMotion_startofline=0 map f (easymotion-s) map j (easymotion-j) map k (easymotion-k) map w (easymotion-bd-w) nmap w (easymotion-overwin-w) " GitGutter {{{2 " -------------- " Grepper {{{2 " ------------ nnoremap G :Grepper let g:grepper={ \ 'tools': ['rg', 'git', 'grep'], \ 'open': 1, \ 'jump': 0, \ } " Gutentags {{{2 " -------------- let g:gutentags_cache_dir = '~/.cache/gutentag' " Obsession {{{2 " -------------- " Choosewin {{{2 " -------------- " " Airline {{{2 " ------------ if $TERM == "linux" let g:airline_powerline_fonts=0 else let g:airline_powerline_fonts=1 endif let g:airline_theme='minimalist' let g:airline#extensions#ycm#enabled=1 let g:airline#extensions#tabline#enabled=1 let g:airline#extensions#ale#enabled=1 " Ale {{{2 " -------- let g:ale_linters = { \ 'python': ['pylint', 'mypy'], \ 'markdown': [], \ 'cpp': [], \ 'c': [], \} let g:ale_lint_on_text_change='normal' let g:ale_lint_on_insert_leave=1 let g:ale_lint_delay=500 let g:ale_sign_error = '»' let g:ale_sign_warning = '·' let g:ale_python_mypy_auto_pipenv=1 let g:ale_python_mypy_options='--python-executable venv/bin/python' let g:ale_python_pylint_auto_pipenv=1 let g:ale_python_pylint_options='--rcfile $HOME/.config/pylintrc' let g:ale_zig_zigfmt_executable='/bin/true' let g:ale_completion_enabled=0 "let g:ale_completion_enabled=1 "let g:ale_completion_delay='' "inoremap "set omnifunc=ale#completion#OmniFunc "noremap gg :ALEGoToDefinition "noremap ga :ALEFindReferences "noremap gn :ALENext "noremap gp :ALEPrevious "noremap sr :ALERename "noremap sq :ALECodeAction "noremap ss :ALEHover "noremap sf :ALESymbolSearch "noremap sd :ALEDocumentation "highlight ALEWarning cterm=undercurl gui=undercurl guibg=none guisp=DarkYellow highlight ALEWarning none " Ditto {{{2 " ---------- " Test {{{2 " --------- nmap tn :TestNearest nmap tf :TestFile nmap ts :TestSuite nmap tl :TestLast nmap tg :TestVisit let test#strategy = "neovim" let test#python#runner = "pytest" " EditorConfig {{{2 " ----------------- " let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*'] let g:EditorConfig_max_line_indicator = 'exceeding' "let g:EditorConfig_exec_path = '/usr/bin/editorconfig' "let g:EditorConfig_core_mode = 'external_command' " Neoterm {{{2 " ------------ " Fugitive {{{2 " ------------- " TeTrIs {{{2 " ----------- " Ledger {{{2 " ----------- autocmd BufEnter,BufReadPost *.journal | silent setlocal modelines=1 autocmd BufEnter,BufReadPost *.journal | silent setlocal foldlevel=1 autocmd BufEnter,BufReadPost *.journal | silent inoremap !! :call ledger#entry():call CleanLedgerEntry() autocmd BufEnter,BufReadPost *.journal | silent vnoremap :call NextEntry() " modeline {{{1 " vim: set foldmethod=marker foldlevel=1 noet ft=vim nowrap :