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

Compare commits

..

No commits in common. "76e280a46a2b4a831984cecb038ec91b56eeaf4b" and "2de46cb2ea6b9d3deb9528425deed270632035f6" have entirely different histories.

4 changed files with 19 additions and 8 deletions

View File

@ -177,7 +177,6 @@ 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]]

View File

@ -1,14 +1,13 @@
{ {
"dependencies": { "dependencies": {
"coc-css": ">=1.2.4", "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",
"coc-pairs": ">=1.2.21", "coc-pairs": ">=1.2.21",
"coc-python": ">=1.2.12", "coc-python": ">=1.2.12",
"coc-rust-analyzer": ">=0.7.15", "coc-rls": ">=1.1.6",
"coc-tsserver": ">=1.5.1", "coc-tsserver": ">=1.5.1",
"coc-yaml": ">=1.0.5" "coc-yaml": ">=1.0.4"
} }
} }

View File

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

View File

@ -35,7 +35,6 @@
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'
@ -70,7 +69,6 @@
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 {