/etc
NameSizeModeActions
alternatives/-0755rm
bash_completion.d/-0755rm
cl.nodejs/-0755rm
cl.php.d/-0755rm
cl.python/-0755rm
cl.selector/-0755rm
cl.selector.conf.d/-0755rm
crypto-policies/-0755rm
default/-0755rm
environment-modules/-0755rm
fonts/-0755rm
gcrypt/-0755rm
ld.so.conf.d/-0755rm
mail/-0755rm
mc/-0755rm
modulefiles/-0755rm
motd.d/-0755rm
my.cnf.d/-0755rm
openldap/-0755rm
pam.d/-0755rm
php.d/-0755rm
pki/-0755rm
profile.d/-0755rm
sasl2/-0755rm
scl/-0755rm
security/-0755rm
skel/-0755rm
ssh/-0755rm
ssl/-0755rm
subversion/-0755rm
sysconfig/-0755rm
.etc.version40600editdlrm
aliases15290644editdlrm
bashrc29170644editdlrm
DIR_COLORS45360644editdlrm
environment360644editdlrm
group3810644editdlrm
host.conf90644editdlrm
hosts18140644editdlrm
inputrc9420644editdlrm
ld.so.cache462550644editdlrm
ld.so.conf280644editdlrm
localtime1270644editdlrm
my.cnf32450644editdlrm
nsswitch.conf21200644editdlrm
odbc.ini00644editdlrm
odbcinst.ini2300644editdlrm
passwd9740644editdlrm
php.ini621250644editdlrm
profile21230644editdlrm
protocols65680644editdlrm
resolv.conf1250644editdlrm
rpc16340644editdlrm
services6928160644editdlrm
shadow7400000editdlrm
trusted-key.key3750644editdlrm
vimrc19820644editdlrm
virc12040644editdlrm
wgetrc49250644editdlrm
Edit: /etc/virc (1204B)
if v:lang =~ "utf8$" || v:lang =~ "UTF-8$" set fileencodings=ucs-bom,utf-8,latin1 endif set nocompatible " Use Vim defaults (much better!) set bs=indent,eol,start " allow backspacing over everything in insert mode "set ai " always set autoindenting on "set backup " keep a backup file set history=50 " keep 50 lines of command line history set ruler " show the cursor position all the time " Only do this part when compiled with support for autocommands if has("autocmd") augroup redhat autocmd! " In text files, always limit the width of text to 78 characters " autocmd BufRead *.txt set tw=78 " When editing a file, always jump to the last cursor position autocmd BufReadPost * \ if line("'\"") > 0 && line ("'\"") <= line("$") | \ exe "normal! g'\"" | \ endif " don't write swapfile on most commonly used directories for NFS mounts or USB sticks autocmd BufNewFile,BufReadPre /media/*,/run/media/*,/mnt/* set directory=~/tmp,/var/tmp,/tmp " start with spec file template autocmd BufNewFile *.spec 0r /usr/share/vim/vimfiles/template.spec augroup END endif filetype plugin on if &term=="xterm" set t_Co=8 set t_Sb=[4%dm set t_Sf=[3%dm endif