- Vim Script 100%
| assets | ||
| autoload | ||
| colors | ||
| ftplugin/php | ||
| port | ||
| .gitignore | ||
| LICENSE | ||
| README.en-US.md | ||
| README.md | ||
| vimrc | ||
Table of Contents
- Overview
- Prerequisites
- Installation
- Active Theme
- Repository Structure
- Getting Started with Vim
- Updating
- Contributing
Overview
This repository contains my personal Vim configuration. Files are frequently updated to explore new plugins and features, so check for conflicts with your existing setup before using.
Prerequisites
Installation
1. Clone the repository into the .vim folder:
git clone https://github.com/itamcampos/vimfiles.git ~/.vim
2. Source it from your .vimrc:
echo "source ~/.vim/vimrc" >> ~/.vimrc
3. Install plugins by opening Vim and running:
:PlugInstall
⚠️ If you already have settings in your
.vimrc, review potential conflicts before running step 2.
Active Theme
The current theme is Tokyo Night, created by @ghifarit53.
| Variant | Description |
|---|---|
night |
Deep dark background |
storm |
Grayish blue |
To switch variants in your vimrc:
let g:tokyonight_style = 'night' " or 'storm'
colorscheme tokyonight
Getting Started with Vim
If you're new to Vim, here are some recommended resources:
You can also run the interactive tutorial directly in your terminal:
vimtutor
Updating
To keep plugins up to date, open Vim and run:
:PlugUpdate
To update this configuration repository:
cd ~/.vim && git pull
Contributing
Suggestions are welcome! Open an issue or send a pull request.