.horizontal-scroll {
white-space: nowrap;
position: relative;
overflow-x: scroll;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* I found this helper useful | |
* the defaultValues must be provided | |
* as the defaultValues are compared to the input current values to determine wether is dirty. | |
*/ | |
import { DeepMap } from "react-hook-form"; | |
function getDirtyFieldsOnly<FormType> (formData: FormType, dirtyFields: DeepMap<FormType, true>):FormType { | |
//@ts-ignore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Start copying from title | |
//============================================================================= | |
// Vscode vim plugin | |
//============================================================================= | |
"vim.leader": "<space>", // leader key | |
// exclude keybindings from vscodevim | |
"vim.handleKeys": { | |
"<C-d>": false, | |
"<C-c>": false, |
Found on the Arch Wiki
sudo nano /etc/modprobe.d/nobeep.conf
Type:
I encountered this problem:
- yarn said something about a permission denied problem when trying to make '
mkdir node_modules
'
This is solved applying what the user seanryanuk says in this issue
- Find what directory yarn is working on (should be your project folder, at least in my case)
- do
sudo chown -R yourUser yourProyectDirectory
Special thanks to the user nnoot for his comment on: https://www.reddit.com/r/ranger/comments/p9slb8/change_xterm_to_konsole/
- Search for ranger desktop entry:
ranger.desktop
it should be somewhere in:
source: https://linuxconfig.org/how-to-install-firefox-developer-edition-on-linux
- Download https://www.mozilla.org/en-US/firefox/developer/
- Extract the compressed file
- Make a dir in
~/.local/
calledopt
mkdir -p ~/.local/opt
NewerOlder