You may ignore this article if you are already an expert in vim as this is a quick note for those who are new to vim editor. As we know, Ansible is used by engineers from all platforms including Linux/Unix, Windows, Networking, DBA side, Developers, Middleware etc. And we know, that Ansible controlnode is available only for unix-based platforms so far. So handling playbooks is a headache as even a single white space in your playbook can spoil your entire day.
You have so many ways to edit a playbook – you can use any visual editor like atom, VSCode, Sublime etc or can sync with git or directly use GUI in Linux environment. And most of them have plugins for ansible as you can easily highlight syntax and understand the indentation.
But as a Linux user, my favourite editor is vim as I can make small changes and test the playbook instantly from CLI itself. See below, for how did I tune my vim variables to get an easy-to-understand look when I edit ansible playbooks.
Learn about vim parameters and variables for easy editing of the yaml or any file format where indentation is very important. See some of the examples shown below.
set et ts=2 ai sw=2 nu
set nu - show line number
set tabstop=4
set et
See some of the definitions below.
ts
: tabstop – eg: tabstop=2et
: expandtabsw
: shiftwidth – eg: shiftwidth=4sts
: softtabstop – eg: softtabstop=4nu
: show line numbercuc
: cursorcolumnEnable syntax
This is on by default in most of the cases but make sure.
syntax on
Choose your colorscheme
You can see the installed colorschemes
by typing :colorscheme
and then a space and press TAB in vim editor.
:colorscheme desert
Show Line Numbers
You must enable the line number visibility
set number
Make your cursor more visible
It would be great if you enable this as your current cursor position will be more visible.
set cursorline
Enable Indent Visibility
There are so many free plugins/codes to enable this and see I have used IndentLine by Yggdroot.
To set all items as permanent
Edit your ~/.vimrc file and add the below lines
autocmd FileType yaml setlocal et ts=2 ai sw=2 nu sts=0
set cursorline
Finally, see the vim editor with autoindent
, cursorline
, indentlines
, etc
You may refer this gist or this article for more details on vim customization.
Do you want to learn more about Ansible practical use cases? Check the latest book from the author as follows. Available on Packt and Amazon.
Disclaimer: The views expressed and the content shared are those of the author and do not reflect the views of the author’s employer or techbeatly platform.
Tags: Ansible · Ansible Doc · customize vim · vim · vim editor
Gineesh Madapparambath
Gineesh Madapparambath is the founder of techbeatly and he is the author of the book - ๐๐ป๐๐ถ๐ฏ๐น๐ฒ ๐ณ๐ผ๐ฟ ๐ฅ๐ฒ๐ฎ๐น-๐๐ถ๐ณ๐ฒ ๐๐๐๐ผ๐บ๐ฎ๐๐ถ๐ผ๐ป.
He has worked as a Systems Engineer, Automation Specialist, and content author. His primary focus is on Ansible Automation, Containerisation (OpenShift & Kubernetes), and Infrastructure as Code (Terraform).
(aka Gini Gangadharan - iamgini.com)
This site uses Akismet to reduce spam. Learn how your comment data is processed.6 Responses
Leave a Reply Cancel reply
Hey , thanks !!!! very useful
[…] Read More : How to Setup Vim Editor […]
set cursorlin –> set cursorline
Thank you so much.
Corrected in article
if you dont use cuc then set cursorline doesn’t work
Yes, you are right!
Thank you for pointing that out. I will update the doc.