From 2b29e812468ae2f33a4d37e2e280b7080f11ee86 Mon Sep 17 00:00:00 2001 From: Dmitry Ilvokhin Date: Sat, 24 Feb 2024 18:36:32 +0000 Subject: Add simple dotfiles management playbook --- misc/dotfiles/vimrc | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 misc/dotfiles/vimrc (limited to 'misc/dotfiles/vimrc') diff --git a/misc/dotfiles/vimrc b/misc/dotfiles/vimrc new file mode 100644 index 0000000..9e3afc2 --- /dev/null +++ b/misc/dotfiles/vimrc @@ -0,0 +1,25 @@ +" Enable ruler (will display line number and column number by default). +set ruler + +" Enable syntax highlight. +syntax on + +" Expand tabs to spaces. +set expandtab + +" Use four-space indentation. +set tabstop=4 +set softtabstop=4 +set shiftwidth=4 + +" Limit text width. +set textwidth=79 + +" Disable incremental search. +set noincsearch + +" Disable highlighting of the search results. +set nohlsearch + +" Disable incremental search. +set noincsearch -- cgit v1.2.3-70-g09d2