diff options
| -rw-r--r-- | .config/BetterDiscord/data/stable/settings.json | 10 | ||||
| -rw-r--r-- | .config/nvim/init.vim | 2 | ||||
| -rw-r--r-- | .ssh/config | 3 |
3 files changed, 13 insertions, 2 deletions
diff --git a/.config/BetterDiscord/data/stable/settings.json b/.config/BetterDiscord/data/stable/settings.json index eb9ab27..551163e 100644 --- a/.config/BetterDiscord/data/stable/settings.json +++ b/.config/BetterDiscord/data/stable/settings.json @@ -4,7 +4,9 @@ "showToasts": true, "mediaKeys": false, "bdContextMenu": true, - "themeAttributes": true + "themeAttributes": true, + "notificationPosition": "top-right", + "notificationEnabled": true }, "addons": { "addonErrors": true, @@ -23,10 +25,13 @@ "openAction": "settings" }, "editor": { + "theme": "system", "lineNumbers": true, "minimap": true, "hover": true, "quickSuggestions": true, + "insertSpaces": false, + "tabSize": 4, "fontSize": 14, "renderWhitespace": "selection" }, @@ -43,6 +48,7 @@ "reactDevTools": false, "inspectElement": false, "devToolsWarning": false, - "recovery": true + "recovery": true, + "canary": false } }
\ No newline at end of file diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 25ac6de..7e27657 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -13,6 +13,7 @@ set ignorecase set smartcase set timeoutlen=500 set updatetime=100 +set smoothscroll set mouse=a set cino=N-s,E-s,l1,g-1,j1 set linebreak " set wrap but don't wrap inside words @@ -95,6 +96,7 @@ Plug 'fymyte/rasi.vim' Plug 'habamax/vim-asciidoctor' Plug 'lonkaars/coc-khard' Plug 'sile-typesetter/vim-sile' +Plug 'ahf/cocci-syntax' " themes Plug 'arzg/vim-colors-xcode' diff --git a/.ssh/config b/.ssh/config index d5b44b7..c070bdf 100644 --- a/.ssh/config +++ b/.ssh/config @@ -3,3 +3,6 @@ match user git host pipeframe.xyz host * warnweakcrypto no + +host router.lan + user admin |