An open API service indexing awesome lists of open source software.

https://github.com/daggerok/vimrc

My ~/.vimrc config
https://github.com/daggerok/vimrc

vim vimrc vimrc-configuration vimrc-files vimrc-settings vimrc-vim

Last synced: 3 months ago
JSON representation

My ~/.vimrc config

Awesome Lists containing this project

README

        

# vimrc
My ~/.vimrc config

just in case backup current local .vimrc config

```bash
cp -Rfv $HOME/.vimrc $HOME/.zshrc-$(date +%Y-%m-%d)-backup
```

install new .vimrc file

```bash
curl -sS https://raw.githubusercontent.com/daggerok/vimrc/main/.vimrc >> $HOME/.vimrc
```

or manually add necessary configuration

```bash
echo '
filetype plugin indent on
"set term=builtin_ansi
set term=xterm-265color
syntax on
' > ~/.vimrc
```