https://github.com/yuryalencar/vim-configuration
This is an customized vim configuration to install using PlugInstall
https://github.com/yuryalencar/vim-configuration
vim vim-config vim-plugins vimrc
Last synced: about 24 hours ago
JSON representation
This is an customized vim configuration to install using PlugInstall
- Host: GitHub
- URL: https://github.com/yuryalencar/vim-configuration
- Owner: yuryalencar
- Created: 2021-08-14T15:01:27.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-18T14:31:11.000Z (almost 5 years ago)
- Last Synced: 2025-02-23T09:45:11.828Z (over 1 year ago)
- Topics: vim, vim-config, vim-plugins, vimrc
- Language: Vim script
- Homepage: https://github.com/yuryalencar/vim-configuration
- Size: 4.88 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vim-configuration
#### go to /Users/[your-user]
```bash
cd /
```
#### create .vim folder in /Users/[your-user]
```bash
mkdir .vim
```
#### clone repository in /Users/[your-user]
```bash
git clone git@github.com:yuryalencar/vim-configuration.git
```
#### copy .vimrc.plug file to /Users/[your-user]
```bash
cp .vimrc.plug ..
```
#### copy .vimrc file to /Users/[your-user]
```bash
cp .vimrc ..
```
#### install plugins
```bash
vim
:PlugInstall
```
#### update plugins
```bash
vim
:PlugUpdate
```
# Best Commands
### GENERAL COMMANDS
##### obs.: you can merge commands described how normal mode with visual mode to affect several lines
#### cut line [NORMAL MODE]
```bash
dd
```
#### paste line [NORMAL MODE]
```bash
p
```
#### copy line [NORMAL MODE]
```bash
yy
```
#### go to end line [NORMAL MODE]
```bash
$
```
#### go to respective line [NORMAL MODE]
```bash
:[line-number]
```
#### undo actions [NORMAL MODE]
```bash
u
```
#### split you window vertically
```bash
:vsp [path/filename.extesion]
```
#### split you window horizontally
```bash
:sp [path/filename.extesion]
```
#### change view to right
```bash
CTRL + W
L
```
#### change view to left
```bash
CTRL + W
H
```
#### change view to up
```bash
CTRL + W
J
```
#### change view to up
```bash
CTRL + W
K
```
#### split selected window
```bash
CTRL + W
S
```
### PLUGINS COMMANDS
#### open NerdTree [NORMAL MODE]
```bash
:NERDTree
```