https://github.com/guidanoli/vimrc
My personal .vimrc file
https://github.com/guidanoli/vimrc
Last synced: 7 months ago
JSON representation
My personal .vimrc file
- Host: GitHub
- URL: https://github.com/guidanoli/vimrc
- Owner: guidanoli
- License: gpl-3.0
- Created: 2021-09-30T15:49:20.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-04-12T02:38:51.000Z (over 2 years ago)
- Last Synced: 2025-01-17T13:29:07.698Z (9 months ago)
- Language: Vim Script
- Size: 31.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My personal .vimrc file
Once upon a time, I had some issues with upgrading my operating system from Linux Mint 19.3 to 20.0.
The problem was that some foreign packages could not be purged because apparently some essential package depended on them (?).
I then decided to simply wipe out all my partition and start with a brand new Linux Mint 20.2 installation.
Since I thought I had nothing on my hard drive that wasn't in the cloud or that I couldn't install again, I simply did no backup.
When I then booted my freshly installed Linux machine, I noticed two things that I was used to all the time were missing:
The vim editor program (which I easily and readily installed with apt-get), and my `.vimrc` file.
The latter, as you might have guessed, was not in any older backup of mine.
That's the reason why I decided to make it here public for whoever is interested, and for myself, if that ever happens again.## Setup
Install the dependencies...
```sh
sudo apt install curl vim git
```Clone this repository anywhere you like...
```sh
git clone https://github.com/guidanoli/vimrc.git ~/Repos/guidanoli/vimrc
```Link your `.vimrc` to it...
```sh
ln -s ~/Repos/guidanoli/vimrc/.vimrc ~/.vimrc
```Then run `vi` to install all plugins...
```sh
vi
```And it will install VimPlug (if don't have it yet) and the plugins!