# ssh, bash, vim configs

#### SSH

```
# disable host key check
Host *
    StrictHostKeyChecking no
    ServerAliveInterval 30
    
Host test123
  User usr
  Hostname qrl.ee
  Port 2222
  IdentityFile ~/.ssh/my-priv-key.pem
  LocalForward 4000 localhost:4000
```

#### BASH

```
alias ll='ls -larthF'
HISTCONTROL=erasedups
HISTFILESIZE=
HISTSIZE=
```

#### VIM .vimrc

```
colorscheme desert
syntax on
:highlight Comment ctermfg=green
set mouse=v
```