Skip to content

Instantly share code, notes, and snippets.

View mukhinid's full-sized avatar
🏠
Working from home

Igor Mukhin mukhinid

🏠
Working from home
View GitHub Profile
@mukhinid
mukhinid / settings.json
Last active March 21, 2022 15:17
KDE kate config for omnisharp LSP (Install omnisharp-roslyn-bin via your package manager first)
{
"servers": {
"csharp": {
"command": ["omnisharp", "-lsp"],
"root": ".",
"url": "https://github.com/OmniSharp/omnisharp-roslyn",
"highlightingModeRegex": "^C#$"
}
}
}
@mukhinid
mukhinid / gist:90018a9e2a4c06c880d4a398026e6d92
Created November 20, 2021 21:12 — forked from tomsihap/gist:e703b9b063ecc101f5a4fc0b01a514c9
Install NVM in Ubuntu 18.04 with ZSH
# Find the latest version on https://github.com/creationix/nvm#install-script
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
# Add in your ~/.zshrc the following:
export NVM_DIR=~/.nvm
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
$ source ~/.zshrc