commit 68c1bb7b8bac403e87380734d35ae72fd8f7a517 (patch)
parent 6bdc41b531c5e4a2d2ecd3fdb727e926e6fcc32e
Author: Alex Karle <alex@alexkarle.com>
Date: Fri, 2 Jul 2021 23:34:33 -0400
vim: Remove stale plugin settings
Some of these plugins I haven't used in a while. Others like
markdown fences/folding are actually something I've grown to not
prefer.
Diffstat:
1 file changed, 0 insertions(+), 13 deletions(-)
diff --git a/.vim/improved.vim b/.vim/improved.vim
@@ -18,13 +18,6 @@ endif
" }}}
" PLUGIN RELATED SETTINGS {{{
-" Don't use powerline font in airline (not neces. installed)
-let g:airline_powerline_fonts = 0
-
-" This enables folding in the built in markdown ftplugin
-let g:markdown_folding = 1
-let g:markdown_fenced_languages = ['sh', 'bash=sh', 'perl', 'python', 'vim']
-
" If using Dirvish, don't use netrw
if isdirectory(expand('~/.vim/pack/plugins/start/vim-dirvish/plugin'))
" Dirvish #137
@@ -34,12 +27,6 @@ else
let g:netrw_liststyle=1 " details view
endif
-" Mojolicious syntax highlighting for Mojolicious::Lite
-let mojo_highlight_data = 1
-
-" git-messenger with popup windows is cool!
-let g:git_messenger_always_into_popup = v:true
-
let g:ale_set_loclist = 1
let g:ale_python_flake8_options = '--ignore "E501,E302"'
let g:ale_linters = { 'javascript': ['eslint'], 'python': ['flake8'] }