Update stuff

This commit is contained in:
2021-02-14 00:05:33 +04:00
parent ad3ae94180
commit a140c1abf2
5 changed files with 12 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
# Beware! This file is rewritten by htop when settings are changed in the interface. # Beware! This file is rewritten by htop when settings are changed in the interface.
# The parser is also very primitive, and not human-friendly. # The parser is also very primitive, and not human-friendly.
fields=0 48 17 18 38 39 40 2 46 47 49 1 fields=0 48 17 18 38 39 40 2 46 47 49 1
sort_key=47 sort_key=46
sort_direction=1 sort_direction=1
hide_threads=0 hide_threads=0
hide_kernel_threads=0 hide_kernel_threads=0

View File

@@ -218,7 +218,7 @@ bar {
# Backlight control # Backlight control
bindsym XF86MonBrightnessUp exec --no-startup-id sudo light -A 5 bindsym XF86MonBrightnessUp exec --no-startup-id sudo light -A 5
bindsym XF86MonBrightnessDown exec --no-startup-id sudo light -U 5 bindsym XF86MonBrightnessDown exec --no-startup-id sudo light -U 5
bindsym XF86Search exec --no-startup-id suspend bindsym XF86Search exec --no-startup-id suspend-and-lock
# Volume control # Volume control
bindsym XF86AudioRaiseVolume exec --no-startup-id pulseaudio-ctl up bindsym XF86AudioRaiseVolume exec --no-startup-id pulseaudio-ctl up

View File

@@ -12,7 +12,7 @@
"diagnostic.displayByAle": false, "diagnostic.displayByAle": false,
"diagnostic.messageTarget": "float", "diagnostic.messageTarget": "float",
"diagnostic.messageDelay": 250, "diagnostic.messageDelay": 250,
"diagnostic.refreshOnInsertMode": true, "diagnostic.refreshOnInsertMode": false,
"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,

View File

@@ -328,11 +328,16 @@ tnoremap <Esc> <C-\><C-n>
command Term split term://fish command Term split term://fish
let g:neoterm_autoinsert = 1 let g:neoterm_autoinsert = 1
let g:neoterm_default_mod = 'rightbelow' let g:neoterm_default_mod = 'rightbelow'
let g:neoterm_size = '20'
" vim-test " vim-test
" make test commands execute using neoterm " make test commands execute using neoterm
let test#strategy = "neoterm" let test#strategy = "neoterm"
nnoremap <Leader>tn :TestNearest<CR>
nnoremap <Leader>tf :TestFile<CR>
nnoremap <Leader>ts :TestSuite<CR>
" Vim gitgutter " Vim gitgutter
let g:gitgutter_enabled = 1 let g:gitgutter_enabled = 1
let g:gitgutter_signs = 1 let g:gitgutter_signs = 1

View File

@@ -19,3 +19,7 @@ Style/Documentation:
Style/FrozenStringLiteralComment: Style/FrozenStringLiteralComment:
Enabled: false Enabled: false
Metrics/BlockLength:
Exclude:
- 'test/**/*'