Vimrc Tutorial

29/12/2020
In this article, we’re going to dive deep into the vimrc file of Vim. Once you’re inside the vimscript, it’s easy to mess things up. That’s why this rule of thumb will always be helpful in your journey with Vim. Don’t put any line in vimrc that you don’t understand.

Vimrc location

There are two places where the vimrc is situated.

System vimrc: /etc/vimrc

User vimrc: ~/.vimrc

Vim reads both of them when launching and modifies the environment accordingly. The system vimrc file forces the Vim configuration for all the users in the system. That’s why it’s never a good practice to use the system vimrc for any changes UNLESS it’s necessary.

For all sorts of purpose, use the user vimrc. It’s the safest way to play around and customize whenever you feel like it. A matter of fact – most of the advanced Vim users use the user vimrc for modifying Vim behavior on the go.

Vimrc syntax

As mentioned earlier, vimrc is nothing more than a script powered by vimscript. If you’re interested in vimscript, there are tons of tutorials all over the internet.

At first, create a vimrc file at the home directory.

touch ~/.vimrc

Next up, open the file with the help of Vim.

vim .vimrc

Or, inside Vim, use the following command.

:e ~/.vimrc

Vim syntax highlighting

I prefer having this option at the very first on my vimrc file.

syntax on

Want some cool-looking color schemes? Vim offers some preinstalled color scheme. Check out all the available color schemes of Vim.

ls /usr/share/vim/vim81/syntax | grep .vim

To enable a syntax highlighting by default, declare it in vimrc.

colorscheme <colorscheme>

Tabs and spaces

Proper indentation is really important for any text editing, especially with programming. As a matter of fact, a big chunk of Vim users uses this editor for programming purposes. Python heavily depends on proper indentation. Bash scripts also require precise indentation.

So, you want to have a proper indentation system to set your code in the right path.

Set the size of the Tab. Note that this option will only change the visual appearance of Tab, not the actual character.

set tabstop=4

Here, the size of per Tab will be equal to 4 spaces. Don’t forget to set the number of effective tabs when you’re editing. Essentially, Vim will insert 4 spaces when you hit <TAB>.

set softtabstop=4

When you’re navigating through <TAB> space, the cursor will jump from one end to another. If you want to turn the <TAB> space into normal spaces, use the following one.

set expandtab

At this point, <TAB> is effectively a shortcut for telling Vim to “insert 4 spaces” where the cursor is.

UI tweaks

Here are some awesome tweaks to elevate your Vim sessions to another level.

At first, line number. It doesn’t sound like much but line number can help easier navigation through the text file, especially in programming when you’re debugging a program.

set number

When working with Vim, there’ll be the necessity of running a multitude of commands. Sometimes, some plugin disables this feature. The following one will show the command in the bottom bar, no matter what.

set showcmd

Puzzled where your cursor is? Use this command for highlighting the line where the cursor is.

set cursorline

The next declaration enables Vim to identify specific file types and load the filetype-specific indent files.

filetype indent on

Who doesn’t love autocompletion? It makes life a LOT easier, especially when you’re in need of running a lot of commands. Vim happens to be heavily dependent on various commands. Why not have the autocomplete menu?

set wildmenu

Vim loves redrawing the screen, especially during things it shouldn’t, for example, when running a macro. The next option will tell Vim not to bother redrawing the screen during those important tasks, leading to a smoother and faster macros.

set lazyredraw

If you’re programming, there will be a LOT of brackets, right? Major IDEs highlight the matching brackets for easier coding. Vim can also do that by default. Just tell Vim to behave that way.

set showmatch

Searching

Searching is one of the basic functions that we need to use on a regular basis. Vim offers one of the finest ways of searching within a text file. To improve your search experience, add these into your vimrc file.

set incsearch
set hlsearch

The first option is to start highlighting as soon as you start typing for search. The next option tells Vim to highlight the search results.

Once you search, Vim keeps the highlight for the rest of the session unless you enter “:noh” or “:nohlsearch”. How about binding this function with a key combo?

nnoremap <leader><space> :nohlsearch<CR>

This binds the command “:nohlsearch” with ,<spacebar> combo.

Folding

This one greatly improves the quality of life for programmers. It allows folding code blocks for easier navigation through the code.

set foldenable

The next option is to open most folds by default.

set foldlevelstart=10

If the value is set to 0, then all the folds would be closed. For value 99, all the folds would be open. So, 10 ensures that only heavily nested blocks are folded.

It would be nice to have a shortcut for opening/closing folds, right? Let’s bind it to the spacebar.

nnoremap <space> za

This next option tells Vim to fold based on indentation. For Python programmers, this is like a blessing.

set foldmethod=indent

There are other values for the “foldmethod” variable: syntax, diff, manual, marker, expr etc. For further information on these, consult the Vim help.

:help foldmethod

Movement

If you’re using Vim, I assume that you’re already familiar with the basic cursor movement. In this section, we’ll just check out some useful key binding to lessen the work.

nnoremap j gj
nnoremap k gk

These 2 lines enable to move around visually. Traditionally, if there would a very big line, you would have to go right/left to reach the desired location. Now, the long line will be visually wrapped. “j” will no longer skip the “fake” part of the visual line.

Plugin manager

This is the core of my daily Vim experience. The world of Vim is so much colorful, thanks to the solid pathway for Vim plugin development. Vim has been around for more than a decade. With such a long time at hand, Vim plugin ecosystem is extremely mature, stable and reliable.

The popularity of Vim plugins is so widespread that there need to be even plugin managers to properly manage them! In this tutorial, I’ll be showing the installation and configuration of Vundle on vimrc. If you’re not familiar with Vim plugin or want further information, check out the usage of Vim plugin.

Git is essential if you’re interested in Vundle and other Vim plugins. Install Git in your system.

Now, set Vundle in your system.

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

It’s time to make the vimrc tweaks to enable Vundle and other plugins.

set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim

These are required by Vundle to operate properly.

Now, it’s time to put some plugins. There are numerous Vim plugins out there. Use Vim Awesome to find out your favorite one.

call vundle#begin()
call vundle#end()
filetype plugin indent on

Saving vimrc

Once you’re complete, save the vimrc file, reload Vim and you’re good to go!

:w

:so %

Comments

If you followed the entire guide, you’ll notice that there are plenty of commenting out there. While comments are really not necessary for a vimrc file, it can actually benefit the user in properly maintaining the script. If you come to your vimrc after a couple of months and forget what these codes are for, you’re in big trouble. Commenting helps to keep everything together with proper documentation and hints.

<type something>

Final thoughts

These are just some simplistic Vim enhancements. There are plenty of ways you can customize Vim in your own way. Just make sure not to put any line in your vimrc that you don’t understand.

Enjoy!

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

Hướng dẫn tích hợp tính năng Etherpad trên Jitsi

Hôm nay, Cloud 365 sẽ hướng dẫn các bạn tích hợp công cụ Etherpad để sử dụng trong phòng họp...
30/12/2020

How to Install Skype on Manjaro Linux

Skype is one of the most popular communication platforms that offer such a great service for free! In fact, it’s one...
29/12/2020

Connect to Office 365, Hotmail, MS Exchange with Hiri eMail Client

Hiri email client is an attractive mail app that integrates seamlessly not only with Microsoft Exchange servers, but also...
28/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

Thuê mua proxy V6 uy tín, chất lượng tại đâu?
11/05/2024

Thuê mua proxy Tiktok tăng doanh thu, hiệu quả cao
11/05/2024

Thuê mua proxy xoay ở đâu uy tín, chất lượng, giá tốt?
11/05/2024

Thuê mua proxy game nâng cao trải nghiệm trò chơi
10/05/2024

Thuê mua proxy Airdrop tốc độ nhanh, hiệu quả cực tốt
10/05/2024