This file contains 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
Invoke-Expression (&starship init powershell) | |
Invoke-Expression (& { (zoxide init powershell | Out-String) }) | |
function Get-GitStatus { & git status -sb $args } | |
New-Alias -Name gs -Value Get-GitStatus -Force -Option AllScope | |
function Get-GitDiff { & git diff $args} | |
New-Alias -Name gd -Value Get-GitDiff -Force -Option AllScope |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match> | |
<test name="family"><string>monospace</string></test> | |
<edit name="family" mode="append_last" binding="strong"> | |
<string>Noto Color Emoji</string> | |
</edit> | |
</match> | |
</fontconfig> |
This file contains 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
Long gone are the days to use Tslint with Typescript. 😰 | |
The roadmap for Typescript is to move over to Eslint while the official TSLint project is being deprecated. | |
This is good news for us! Finally, we will get some consistency in the ECMAScript world as Eslint standard for both Typescript and Javascript! 🤩 | |
Here is how you can easily get up and running with Eslint, Typescript, Prettier and React. I’m going to give you the setup first, then explain how it works together, and in the end, I’ll give you a working example. | |
Prerequisites | |
If you don’t have an existing typescript/react project you can use create-react-app with the typescript template: |
This file contains 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
{ | |
"libs": [ | |
"ecma5", | |
"ecma6", | |
"browser" | |
], | |
"loadEagerly": [ | |
], | |
"plugins": { | |
"node": {} |
This file contains 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
http://homeonrails.com/2016/05/truecolor-in-gnome-terminal-tmux-and-neovim/ |
This file contains 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
RMC -> Configure Desktop -> Mouse Actions |
This file contains 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
https://aur.archlinux.org/packages/msbuild-stable/ is needed for OmniSharp to work inside vscode. |
This file contains 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
Find uid and gid by using 'id username' | |
/dev/NTFS-partition /mnt/windows ntfs-3g uid=userid,gid=groupid,umask=0022 0 0 |
This file contains 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
def_key "/" | |
find | |
def_key "/" | |
find_item_forward | |
def_key "+" | |
show_clock | |
def_key "=" | |
volume_up |
This file contains 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
Toggle safe mode: gs | |
Create new file: N | |
Delete file: d | |
Rename file: r | |
New directory: K | |
Open file: e | |
Move file: m | |
Open VimFilerExplorer: e | |
Open current directory in a new buffer: dl | |
Open current directory in a new split: ds |
NewerOlder