1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

added vim-go

This commit is contained in:
Ryan Kes 2020-08-31 11:45:33 +02:00
parent 2de46cb2ea
commit 2e84314db2
4 changed files with 5 additions and 16 deletions

View File

@ -177,6 +177,7 @@ A repository of my personal configuration files.
- [[https://github.com/airblade/vim-gitgutter][airblade/vim-gitgutter]]
- [[https://github.com/alvan/vim-closetag][alvan/vim-closetag]]
- [[https://github.com/dense-analysis/ale][dense-analysis/ale]]
- [[https://github.com/fatih/vim-go][fatih/vim-go]]
- [[https://github.com/godlygeek/tabular][godlygeek/tabular]]
- [[https://github.com/neoclide/coc.nvim][neoclice/coc.nvim]]
- [[https://github.com/preservim/nerdcommenter][preservim/nerdcommenter]]

View File

@ -1,6 +1,7 @@
{
"dependencies": {
"coc-css": ">=1.2.3",
"coc-go": ">=0.10.0",
"coc-html": ">=1.2.4",
"coc-jest": ">=1.0.3",
"coc-json": ">=1.2.6",

View File

@ -1,16 +1 @@
{
"coc.preferences.formatOnSaveFiletypes": [
"css",
"markdown",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"json",
"yaml",
"html",
"graphql",
"mdx",
"rust"
]
}
{}

View File

@ -35,6 +35,7 @@
Plug 'airblade/vim-gitgutter'
Plug 'alvan/vim-closetag'
Plug 'dense-analysis/ale'
Plug 'fatih/vim-go'
Plug 'godlygeek/tabular'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'preservim/nerdcommenter'
@ -69,6 +70,7 @@
set iskeyword-=. " '.' is an end of word designator
set iskeyword-=# " '#' is an end of word designator
set iskeyword-=- " '-' is an end of word designator
set cmdheight=2 " Better display for messages
" }
" Vim UI {