This commit is contained in:
2021-02-05 13:30:54 +04:00
parent c292200110
commit ad3ae94180
3 changed files with 19 additions and 4 deletions

View File

@@ -8,17 +8,14 @@
"diagnostic.warningSign": "W>", "diagnostic.warningSign": "W>",
"diagnostic.infoSign": "I>", "diagnostic.infoSign": "I>",
"diagnostic.hintSign": "?>", "diagnostic.hintSign": "?>",
"diagnostic.locationlist": true, "diagnostic.locationlistUpdate": true,
"diagnostic.displayByAle": false, "diagnostic.displayByAle": false,
"diagnostic.messageTarget": "float", "diagnostic.messageTarget": "float",
"diagnostic.messageDelay": 250, "diagnostic.messageDelay": 250,
"diagnostic.refreshOnInsertMode": true, "diagnostic.refreshOnInsertMode": true,
"diagnostic.refreshAfterSave": true,
"highlight.disableLanguages": ["slim", "md"], "highlight.disableLanguages": ["slim", "md"],
"coc.source.omni.filetypes": [], "coc.source.omni.filetypes": [],
"coc.source.omni.enable": false, "coc.source.omni.enable": false,
"eslint.enable": true,
"rust-analyzer.cargo-watch.enable": true,
"languageserver": { "languageserver": {
"golang": { "golang": {
"command": "gopls", "command": "gopls",

View File

@@ -117,6 +117,8 @@ colorscheme base16-gruvbox-dark-hard
" return !col || getline('.')[col - 1] =~# '\s' " return !col || getline('.')[col - 1] =~# '\s'
" endfunction " endfunction
" let g:node_client_debug = 1
let g:coc_global_extensions = [ let g:coc_global_extensions = [
\ 'coc-css', \ 'coc-css',
\ 'coc-fish', \ 'coc-fish',
@@ -510,6 +512,9 @@ set list listchars=tab:▸·,trail:·,nbsp:·
" Use one space, not two, after punctuation. " Use one space, not two, after punctuation.
set nojoinspaces set nojoinspaces
" Disable folding
set nofoldenable
" Disable some keys " Disable some keys
noremap <Up> <NOP> noremap <Up> <NOP>
noremap <Down> <NOP> noremap <Down> <NOP>

View File

@@ -1,8 +1,21 @@
# Common configuration. # Common configuration.
AllCops: AllCops:
NewCops: enable
Exclude: Exclude:
- 'node_modules/**/*' - 'node_modules/**/*'
- 'tmp/**/*' - 'tmp/**/*'
- 'vendor/**/*' - 'vendor/**/*'
- '.git/**/*' - '.git/**/*'
Style/LambdaCall:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/Documentation:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false