ubuntu: obey linting rules

This commit is contained in:
Marco D'Agostini 2020-12-17 10:24:14 -05:00
parent 3c38a5f3de
commit 22a5bf1c9c

View File

@ -57,34 +57,43 @@ Put config file <https://gist.github.com/madacol/19f8c71ba98f484a4294ccfe90e88e6
Install bass, then configure these functions
- **__nvm_load.fish**
```fish
function __nvm_load
functions -e __nvm_load node npm npx
bass source ~/.nvm/nvm.sh --no-use ';' nvm use 2> /dev/null '||' nvm use default
end
```
- **nvm.fish**
```fish
function nvm
functions -e __nvm_load node npm npx
bass source ~/.nvm/nvm.sh --no-use ';' source ~/.nvm/bash_completion ';' nvm $argv
end
```
- **npx.fish**
```fish
function npx
__nvm_load
npx $argv
end
```
- **npm.fish**
```fish
function npm
__nvm_load
npm $argv
end
```
- **node.fish**
```fish
function node
__nvm_load
@ -92,7 +101,6 @@ Install bass, then configure these functions
end
```
### Zsh - Edit ~/.zshrc
#### Add `~/.local/bin` to PATH
@ -145,6 +153,7 @@ export PAGER=most
```bash
plugins=(git zsh-syntax-highlighting zsh-autosuggestions)
```
**Note:** Probably need to install them first
## Gnome extensions