| lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
|
Open Source and information security mailing list archives
| ||
|
Message-ID: <CAFf+5zgB1UKyw8My54Rh7juFi1oAJ3xcu1-OhZ6Bc--ikwDjbA@mail.gmail.com>
Date: Tue, 4 Mar 2025 16:49:40 +0530
From: Amit <amitchoudhary0523@...il.com>
To: linux-kernel@...r.kernel.org
Subject: Simple but sufficient .vimrc settings.
Simple but sufficient .vimrc settings.
set hlsearch
set ts=4
set expandtab
set shiftwidth=4
set autoindent
set smartindent
syntax on
set formatoptions+=r
set splitbelow
set splitright
set colorcolumn=81
highlight ColorColumn ctermbg=black ctermfg=white
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") |
exe "normal! g'\"" | endif
endif