Compare commits
No commits in common. "c9aeba9a7e6925782306df8c6e182709c8676877" and "97796ba578d2907ce5508388416ec454f42cbe12" have entirely different histories.
c9aeba9a7e
...
97796ba578
@ -51,15 +51,39 @@ call plug#begin('~/.config/nvim/plugged')
|
|||||||
" coc
|
" coc
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||||
|
|
||||||
" PyRight
|
" coc for ruby
|
||||||
|
Plug 'neoclide/coc-solargraph', {'do': 'gem install solargraph'}
|
||||||
|
|
||||||
|
" coc for python
|
||||||
|
Plug 'fannheyward/coc-pyright', {'do': 'yarn install --frozen-lockfile; npm i -D npx-run; pip install --user jedi; pip install --user black'}
|
||||||
Plug 'sakhnik/nvim-gdb', { 'do': ':!./install.sh' }
|
Plug 'sakhnik/nvim-gdb', { 'do': ':!./install.sh' }
|
||||||
|
|
||||||
" Ansible yaml
|
" coc for yaml
|
||||||
|
Plug 'neoclide/coc-yaml', {'do': 'yarn install --frozen-lockfile'}
|
||||||
Plug 'pearofducks/ansible-vim', { 'do': './UltiSnips/generate.sh' }
|
Plug 'pearofducks/ansible-vim', { 'do': './UltiSnips/generate.sh' }
|
||||||
|
|
||||||
|
" coc for json
|
||||||
|
Plug 'neoclide/coc-json', {'do': 'yarn install --frozen-lockfile'}
|
||||||
|
|
||||||
|
" coc for markdownlint
|
||||||
|
Plug 'fannheyward/coc-markdownlint', {'do': 'yarn install --frozen-lockfile; npm i -D markdownlint --save-dev'}
|
||||||
|
|
||||||
|
" coc for bash
|
||||||
|
Plug 'josa42/coc-sh', {'do': 'yarn install --frozen-lockfile; npm i -D coc-sh; npm i -D bash-language-server'}
|
||||||
|
|
||||||
|
" coc for prettier
|
||||||
|
Plug 'neoclide/coc-prettier', {'do': 'yarn install --frozen-lockfile'}
|
||||||
|
|
||||||
|
" coc-diagnostic
|
||||||
|
" CocInstall coc-diagnostic
|
||||||
|
Plug 'iamcco/coc-diagnostic'
|
||||||
|
|
||||||
" coc-cpp coc-c
|
" coc-cpp coc-c
|
||||||
" emerge dev-util/ccls
|
" emerge dev-util/ccls
|
||||||
|
|
||||||
|
" coc-perl
|
||||||
|
Plug 'ulwlu/coc-perl', {'do': 'yarn install && yarn build'}
|
||||||
|
|
||||||
" Multiple cursors
|
" Multiple cursors
|
||||||
Plug 'terryma/vim-multiple-cursors'
|
Plug 'terryma/vim-multiple-cursors'
|
||||||
|
|
||||||
@ -69,9 +93,6 @@ call plug#begin('~/.config/nvim/plugged')
|
|||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" Instalation coc extentions
|
|
||||||
let g:coc_global_extensions = ['coc-solargraph', 'coc-go', 'coc-yaml', 'coc-pyright', 'coc-json' , 'coc-markdownlint' , 'coc-sh', 'coc-prettier', 'coc-diagnostic', 'coc-perl']
|
|
||||||
|
|
||||||
" Status-line
|
" Status-line
|
||||||
set statusline=
|
set statusline=
|
||||||
set statusline+=%#IncSearch#
|
set statusline+=%#IncSearch#
|
||||||
|
21
.gitignore
vendored
21
.gitignore
vendored
@ -1,25 +1,4 @@
|
|||||||
.Xauthority
|
.Xauthority
|
||||||
.Trash
|
|
||||||
.DS_Store
|
|
||||||
.ansible
|
|
||||||
.CFUserTextEncoding
|
|
||||||
.cups/
|
|
||||||
.docker/
|
|
||||||
.oh-my-zsh/
|
|
||||||
.shell.pre-oh-my-zsh
|
|
||||||
.zcompdum*
|
|
||||||
.zsh_history
|
|
||||||
.zsh_sessions/
|
|
||||||
.emacs.d/emacs-custom.el
|
|
||||||
.emacs.d/smex-items
|
|
||||||
notes
|
|
||||||
Applications/
|
|
||||||
Desktop/
|
|
||||||
Library/
|
|
||||||
Pictures/
|
|
||||||
Public/
|
|
||||||
VirtualBox*
|
|
||||||
synergy.log
|
|
||||||
.config/Element/
|
.config/Element/
|
||||||
.config/TabNine/
|
.config/TabNine/
|
||||||
.config/coc/
|
.config/coc/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user