Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/giggio/vimfiles

My vimfiles
https://github.com/giggio/vimfiles

dotfiles vim vimrc

Last synced: 2 months ago
JSON representation

My vimfiles

Awesome Lists containing this project

README

        

# Giovanni Bassi's vimfiles

These are my personal vimfiles. These are personal, if you want to use it, do it
with care. Read the whole thing!

I am using Vim both on Ubuntu and Windows. Right now there are some nice
bundles, like NERDTree. I use Vim mostly for script editing in general.

## Installation instructions

### Linux

```bash
git clone --recursive https://github.com/giggio/vimfiles.git ~/.vim
echo "source ~/.vim/.vimrc" > ~/.vimrc
cd ~/.vim
```

### Windows (PowerShell Core)

```powershell
git clone --recursive https://github.com/giggio/vimfiles.git ~/.vim
# or git clone --recursive [email protected]:giggio/vimfiles.git ~/.vim
# I'm using scoop to install Python, adapt at your will:
Set-Content -NoNewline -Path ~/_vimrc -Value "let `$PYTHONHOME = '$env:USERPROFILE\scoop\apps\python\current\'`nsource $($($env:USERPROFILE).Replace('\', '/'))/.vim/.vimrc`n"
cd ~/.vim
```

Notes on Windows' version: The normal Vim home (`runtimepath`) would be at
`~/vimfiles`, but this is changed to `~/.vim` so that Linux and Windows work the
same way.