diff options
author | terminaldweller <thabogre@gmail.com> | 2022-01-27 07:14:16 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-01-27 07:14:16 +0000 |
commit | b6e3c49e63324eddd2e56fa7e918821e7a497d33 (patch) | |
tree | 632318e6576e8c8ffeee11c9bae7f7a65a27c181 /.vimrc | |
parent | updates (diff) | |
download | scripts-b6e3c49e63324eddd2e56fa7e918821e7a497d33.tar.gz scripts-b6e3c49e63324eddd2e56fa7e918821e7a497d33.zip |
updates
Diffstat (limited to '.vimrc')
-rw-r--r-- | .vimrc | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -203,13 +203,14 @@ Plug 'kh3phr3n/python-syntax' Plug 'zaid/vim-rec' Plug 'calincru/flex-bison-syntax' Plug 'tridactyl/vim-tridactyl' +Plug 'hrother/offlineimaprc.vim' +Plug 'lifepillar/pgsql.vim', {'for': ['sql','pqsl', 'pgsql']} " Plug 'kana/vim-operator-user' " Plug 'haya14busa/vim-operator-flashy' " Plug 'terryma/vim-expand-region' " Plug 'romainl/vim-devdocs' " Plug 'rhysd/devdocs.vim' " Plug 'psliwka/vim-smoothie' -" Plug 'lifepillar/pgsql.vim', {'for': ['sql','pqsl', 'pgsql']} " Plug 'tmux-plugins/vim-tmux' " Plug 'rhysd/vim-gfm-syntax' " Plug 'vim-utils/vim-troll-stopper' @@ -256,7 +257,7 @@ let g:jellybeans_overrides = { \ 'Todo': { 'guifg': '000000', 'guibg': '00cc00', \ 'ctermfg': 'Black', 'ctermbg': 'Blue', \ 'attr': 'bold' }, -\ 'Comment': { 'guibg': '339966', 'guifg': '000000'}, +\ 'Comment': { 'guifg': '339966', 'attr': 'bold'}, \ 'background': { "guibg": "000000", "ctermbg":"none"}, \ 'StorageClass': {"guifg": '9966ff' }, \ 'PreCondit': {"guifg": '5f87ff' }, @@ -1436,6 +1437,11 @@ augroup ALEJAVA autocmd FileType java let b:ale_linters = {'java': ['checkstyle']} autocmd FileType java let b:ale_fixers = {'java': ['google_java_format']} augroup END +augroup ALELUA + autocmd! + autocmd FileType lua let b:ale_linters = {'lua': ['luacheck']} + autocmd FileType lua let b:ale_fixers = {'lua': ['lua-format']} +augroup END "latex let g:tex_flavor = 'latex' |