aboutsummaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2023-04-10 07:42:56 +0000
committerterminaldweller <devi@terminaldweller.com>2023-04-10 07:42:56 +0000
commitcc392c16bde5fe394089ea92b623aec2c5635e1f (patch)
treea35a55ca7995ee95dac95f28aa79ef904238cdc2 /.vimrc
parentupdates (diff)
downloadscripts-cc392c16bde5fe394089ea92b623aec2c5635e1f.tar.gz
scripts-cc392c16bde5fe394089ea92b623aec2c5635e1f.zip
updates
Diffstat (limited to '')
-rw-r--r--.vimrc5
1 files changed, 4 insertions, 1 deletions
diff --git a/.vimrc b/.vimrc
index 7141e00..7934f3c 100644
--- a/.vimrc
+++ b/.vimrc
@@ -1157,6 +1157,8 @@ autocmd FileType javasript let b:vcm_tab_complete = 'omni'
"filetypes
set dictionary+=/usr/share/dict/words
autocmd FileType pandoc,markdown,text,vimwiki,tex setlocal complete+=k
+let g:pandoc#syntax#conceal#use = 0
+autocmd FileType pandoc PandocHighlight sh
"fzf
map <leader>f <Esc><Esc>:Files!<CR>
@@ -1373,7 +1375,7 @@ let g:context_presenter = 'vim-popup'
augroup AUSpell
autocmd!
- autocmd FileType markdown,txt,vimwiki,tex setlocal spell
+ autocmd FileType markdown,txt,vimwiki,tex,pandoc setlocal spell
augroup END
augroup MDInsert
@@ -1477,6 +1479,7 @@ augroup ALETS
autocmd FileType typescript let b:ale_fixers = {'typescript': ['prettier']}
augroup END
let b:ale_python_mypy_options = "--check-untyped-defs"
+let b:ale_python_pylint_options = "--generate-members"
augroup ALEPY
autocmd!
autocmd FileType python let b:ale_linters = {'python': ['mypy', 'pylint', 'bandit', 'ruff']}