Configuração pessoal do Vim
  • Vim Script 100%
Find a file
2026-04-30 08:19:17 -05:00
assets carregamento local da imagem de logo no topo de README.md 2026-04-30 08:16:07 -05:00
autoload configurações para ambiente Vim simples 2026-04-29 15:55:05 -05:00
colors configurações para ambiente Vim simples 2026-04-29 15:55:05 -05:00
ftplugin/php configurações para ambiente Vim simples 2026-04-29 15:55:05 -05:00
port configurações para ambiente Vim simples 2026-04-29 15:55:05 -05:00
.gitignore exceções de versionamento e definição de atributos específicos para arquivos e diretórios Git 2026-04-29 15:53:43 -05:00
LICENSE configurações para ambiente Vim simples 2026-04-29 15:55:05 -05:00
README.en-US.md carregamento local da imagem de logo no topo de README.en-US.md 2026-04-30 08:19:17 -05:00
README.md carregamento local da imagem de logo no topo de README.md 2026-04-30 08:16:07 -05:00
vimrc configurações para ambiente Vim simples 2026-04-29 15:55:05 -05:00

Vim Logo

vimfiles

Personal Vim configuration with Tokyo Night theme

License: MIT Vim Theme pt-BR


Table of Contents


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.


Made by itamcampos