Update Neovim config

This commit is contained in:
Raoul Snyman 2023-07-10 11:09:39 -07:00
parent 9e60593a84
commit 7fc5895ef8
1 changed files with 5 additions and 1 deletions

View File

@ -53,6 +53,7 @@ colorscheme vividchalk
" Leader
let mapleader = ","
map <Leader><space> :noh<return>
map <Leader>s :move+<return>
" Lightline
let g:lightline = {
@ -88,8 +89,11 @@ let g:startify_list_order = [
\ [' Other'],
\ ]
" Python 3
let g:python3_host_prog = '/usr/bin/python3'
" Neomake
let g:neomake_python_enabled_makers = ['flake8']
let g:neomake_python_enabled_makers = ['flake8', 'mypy']
autocmd! BufWritePost * Neomake
" Deoplete