diff --git a/home/.config/nvim/coc-settings.json b/home/.config/nvim/coc-settings.json index 6d13884..5a7c749 100644 --- a/home/.config/nvim/coc-settings.json +++ b/home/.config/nvim/coc-settings.json @@ -1,6 +1,5 @@ { "python.jediEnabled": false, - "python.setLinter": "pylint", "suggest.noselect": false, "suggest.echodocSupport": true, "suggest.maxCompleteItemCount": 20, @@ -9,7 +8,8 @@ "typescript", "typescriptreact", "json", - "javascriptreact" + "javascriptreact", + "yaml" ], "eslint.filetypes": [ "javascript", @@ -17,7 +17,6 @@ "typescriptreact", "javascriptreact" ], - "eslint.autoFixOnSave": false, "prettier.singleQuote": true, "diagnostic.errorSign": "•", "diagnostic.warningSign": "•", diff --git a/home/.config/sway/conf.d/06-keybinds.conf b/home/.config/sway/conf.d/06-keybinds.conf index 7cd04d7..7ff3c07 100644 --- a/home/.config/sway/conf.d/06-keybinds.conf +++ b/home/.config/sway/conf.d/06-keybinds.conf @@ -175,3 +175,10 @@ bindsym Print exec grim -g "$(slurp -d)" - | wl-copy -t image/png # Copy qr code to clipboard bindsym Shift+Print exec grim -g "$(slurp -d)" - | zbarimg -q --raw PNG:- | wl-copy + + +# make Alt+hjkl emulate arrow keys +bindsym Alt+h exec ydotool key left +bindsym Alt+j exec ydotool key down +bindsym Alt+k exec ydotool key up +bindsym Alt+l exec ydotool key right