Compare commits
8 Commits
97796ba578
...
c9aeba9a7e
Author | SHA1 | Date | |
---|---|---|---|
c9aeba9a7e | |||
ccf148fd0d | |||
6149f5a8ed | |||
8a87a8f066 | |||
94027229c6 | |||
29123e7a45 | |||
8aaa2713cf | |||
f295c73db0 |
@ -51,39 +51,15 @@ call plug#begin('~/.config/nvim/plugged')
|
|||||||
" coc
|
" coc
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||||
|
|
||||||
" coc for ruby
|
" PyRight
|
||||||
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' }
|
||||||
|
|
||||||
" coc for yaml
|
" Ansible 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'
|
||||||
|
|
||||||
@ -93,6 +69,9 @@ 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,4 +1,25 @@
|
|||||||
.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