| 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+5zjmySwMg1XwmVO-HfrDNLSox4AyuffWT=0uRCAhpTWTeg@mail.gmail.com>
Date: Mon, 28 Apr 2025 14:35:06 +0530
From: Amit <amitchoudhary0523@...il.com>
To: linux-kernel@...r.kernel.org
Subject: Simple but sufficient .vimrc settings (file .vimrc)
=====
.vimrc
=====
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
" Jump to the last position in the file when re-opening the file.
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") |
exe "normal! g'\"" | endif
endif