https://github.com/giggio/vimfiles
My vimfiles
https://github.com/giggio/vimfiles
dotfiles vim vimrc
Last synced: 8 months ago
JSON representation
My vimfiles
- Host: GitHub
- URL: https://github.com/giggio/vimfiles
- Owner: giggio
- License: mit
- Created: 2012-01-19T17:46:02.000Z (almost 14 years ago)
- Default Branch: main
- Last Pushed: 2024-04-30T22:46:14.000Z (over 1 year ago)
- Last Synced: 2025-03-17T23:51:55.678Z (8 months ago)
- Topics: dotfiles, vim, vimrc
- Language: Vim Script
- Homepage:
- Size: 114 KB
- Stars: 13
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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 git@github.com: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.