Neovim 0.5.0 migration #1

Merged
esensar merged 75 commits from neovim-0.5.0 into main 2021-07-05 09:34:51 +00:00
3 changed files with 10 additions and 5 deletions
Showing only changes of commit ed75b25def - Show all commits

View file

@ -34,3 +34,5 @@ mailboxes = +Inbox
set imap_check_subscribed
source /usr/share/doc/neomutt/vim-keys/vim-keys.rc
macro index,pager A "<save-message>=Archive<enter>" "Archive Message"

View file

@ -0,0 +1,2 @@
setlocal ts=2 sts=2 sw=2 expandtab autoindent
let b:undo_ftplugin .= '|setlocal ts< sts< sw< expandtab< autoindent<'

View file

@ -10,6 +10,7 @@ let g:ale_fix_on_save = 1 " Default
let g:ale_linters = {}
let g:ale_linters.python = ['flake8']
let g:ale_linters.kotlin = ['ktlint']
let g:ale_linters.clojure = ['clj-kondo']
" ALE Fixers configuration
let g:ale_fixers = {}