mirror of
https://github.com/alrayyes/dotfiles/
synced 2023-11-14 15:56:30 +00:00
added vim-go
This commit is contained in:
parent
2de46cb2ea
commit
2e84314db2
@ -177,6 +177,7 @@ A repository of my personal configuration files.
|
|||||||
- [[https://github.com/airblade/vim-gitgutter][airblade/vim-gitgutter]]
|
- [[https://github.com/airblade/vim-gitgutter][airblade/vim-gitgutter]]
|
||||||
- [[https://github.com/alvan/vim-closetag][alvan/vim-closetag]]
|
- [[https://github.com/alvan/vim-closetag][alvan/vim-closetag]]
|
||||||
- [[https://github.com/dense-analysis/ale][dense-analysis/ale]]
|
- [[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/godlygeek/tabular][godlygeek/tabular]]
|
||||||
- [[https://github.com/neoclide/coc.nvim][neoclice/coc.nvim]]
|
- [[https://github.com/neoclide/coc.nvim][neoclice/coc.nvim]]
|
||||||
- [[https://github.com/preservim/nerdcommenter][preservim/nerdcommenter]]
|
- [[https://github.com/preservim/nerdcommenter][preservim/nerdcommenter]]
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"coc-css": ">=1.2.3",
|
"coc-css": ">=1.2.3",
|
||||||
|
"coc-go": ">=0.10.0",
|
||||||
"coc-html": ">=1.2.4",
|
"coc-html": ">=1.2.4",
|
||||||
"coc-jest": ">=1.0.3",
|
"coc-jest": ">=1.0.3",
|
||||||
"coc-json": ">=1.2.6",
|
"coc-json": ">=1.2.6",
|
||||||
|
@ -1,16 +1 @@
|
|||||||
{
|
{}
|
||||||
"coc.preferences.formatOnSaveFiletypes": [
|
|
||||||
"css",
|
|
||||||
"markdown",
|
|
||||||
"javascript",
|
|
||||||
"javascriptreact",
|
|
||||||
"typescript",
|
|
||||||
"typescriptreact",
|
|
||||||
"json",
|
|
||||||
"yaml",
|
|
||||||
"html",
|
|
||||||
"graphql",
|
|
||||||
"mdx",
|
|
||||||
"rust"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
@ -35,6 +35,7 @@
|
|||||||
Plug 'airblade/vim-gitgutter'
|
Plug 'airblade/vim-gitgutter'
|
||||||
Plug 'alvan/vim-closetag'
|
Plug 'alvan/vim-closetag'
|
||||||
Plug 'dense-analysis/ale'
|
Plug 'dense-analysis/ale'
|
||||||
|
Plug 'fatih/vim-go'
|
||||||
Plug 'godlygeek/tabular'
|
Plug 'godlygeek/tabular'
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||||
Plug 'preservim/nerdcommenter'
|
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 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 {
|
" Vim UI {
|
||||||
|
Loading…
Reference in New Issue
Block a user