Skip to content

Commit

Permalink
some updates
Browse files Browse the repository at this point in the history
  • Loading branch information
aceforeverd committed Mar 16, 2021
1 parent d4af529 commit 360f7ec
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
+ taging: [ctags](https://github.com/universal-ctags/ctags), [gtags](https://www.gnu.org/software/global/)
+ utilities: [bat](https://github.com/sharkdp/bat), [delta](https://github.com/dandavison/delta)
+ [nerd font](https://github.com/ryanoasis/nerd-fonts)
+ C family tools: [clangd](https://clangd.llvm.org/), cppcheck, clang-format, etc
+ C family tools: [clangd](https://clangd.llvm.org/), cpplint, clang-format, etc
+ shells: [shellcheck](https://github.com/koalaman/shellcheck), [shfmt](https://github.com/mvdan/sh)
+ [vim-vint](https://github.com/Vimjas/vint)
+ [bash-language-server](https://github.com/bash-lsp/bash-language-server)
Expand Down
1 change: 1 addition & 0 deletions autoload/aceforeverd/completion.vim
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ function! aceforeverd#completion#init_source_coc() abort
\ 'coc-fzf-preview', 'coc-xml',
\ 'coc-translator', 'coc-cmake',
\ 'coc-metals', 'coc-emoji',
\ 'coc-markdownlint'
\ ]

function! s:coc_maps() abort
Expand Down
9 changes: 7 additions & 2 deletions coc-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,17 @@
"filetypes": ["kotlin"]
}
},
// coc-pyright
"python.pythonPath": "python3",
"python.formatting.provider": "yapf",
// diagnostic-languageserver
"diagnostic-languageserver.filetypes": {
"vim": "vint",
"sh": "shellcheck",
"markdown": ["write-good", "markdownlint"],
"markdown": ["write-good"],
"cpp": ["cpplint"],
"dockerfile": ["hadolint"]
"dockerfile": ["hadolint"],
"python": ["mypy", "pylint"]
},
"diagnostic-languageserver.formatFiletypes": {
"sh": "shfmt"
Expand Down
1 change: 0 additions & 1 deletion vimrc.vim
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ if dein#load_state(s:dein_repo)
call dein#add('Shougo/neco-vim')
call dein#add('Shougo/neoyank.vim')
call dein#add('Shougo/echodoc.vim')
call dein#add('Shougo/deol.nvim')

call dein#add('voldikss/vim-floaterm')

Expand Down

0 comments on commit 360f7ec

Please sign in to comment.