Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
vim /
vim91 /
Delete
Unzip
Name
Size
Permission
Date
Action
autoload
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
colors
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
compiler
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
doc
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
ftplugin
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
import
[ DIR ]
drwxr-xr-x
2025-08-05 17:14
indent
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
keymap
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
lang
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
macros
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
pack
[ DIR ]
drwxr-xr-x
2025-08-05 17:14
plugin
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
print
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
spell
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
syntax
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
tutor
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
bugreport.vim
1.95
KB
-rw-r--r--
2026-07-13 17:17
debian.vim
1.76
KB
-rw-r--r--
2026-06-15 22:15
defaults.vim
4.74
KB
-rw-r--r--
2026-07-13 17:17
delmenu.vim
1.25
KB
-rw-r--r--
2026-07-13 17:17
evim.vim
2.23
KB
-rw-r--r--
2026-07-13 17:17
filetype.vim
76.64
KB
-rw-r--r--
2026-07-13 17:17
ftoff.vim
346
B
-rw-r--r--
2026-07-13 17:17
ftplugin.vim
1.17
KB
-rw-r--r--
2026-07-13 17:17
ftplugof.vim
419
B
-rw-r--r--
2026-07-13 17:17
gvimrc_example.vim
1.67
KB
-rw-r--r--
2026-07-13 17:17
indent.vim
820
B
-rw-r--r--
2026-07-13 17:17
indoff.vim
348
B
-rw-r--r--
2026-07-13 17:17
menu.vim
41.16
KB
-rw-r--r--
2026-07-13 17:17
mswin.vim
3.41
KB
-rw-r--r--
2026-07-13 17:17
optwin.vim
67.38
KB
-rw-r--r--
2026-07-13 17:17
scripts.vim
866
B
-rw-r--r--
2026-07-13 17:17
synmenu.vim
39.39
KB
-rw-r--r--
2026-07-13 17:17
vimrc_example.vim
1.4
KB
-rw-r--r--
2026-07-13 17:17
Save
Rename
" An example for a vimrc file. " " Maintainer: The Vim Project <https://github.com/vim/vim> " Last Change: 2023 Aug 10 " Former Maintainer: Bram Moolenaar <Bram@vim.org> " " To use it, copy it to " for Unix: ~/.vimrc " for Amiga: s:.vimrc " for MS-Windows: $VIM\_vimrc " for Haiku: ~/config/settings/vim/vimrc " for OpenVMS: sys$login:.vimrc " When started as "evim", evim.vim will already have done these settings, bail " out. if v:progname =~? "evim" finish endif " Get the defaults that most users want. source $VIMRUNTIME/defaults.vim if has("vms") set nobackup " do not keep a backup file, use versions instead else set backup " keep a backup file (restore to previous version) if has('persistent_undo') set undofile " keep an undo file (undo changes after closing) endif endif if &t_Co > 2 || has("gui_running") " Switch on highlighting the last used search pattern. set hlsearch endif " Put these in an autocmd group, so that we can delete them easily. augroup vimrcEx au! " For all text files set 'textwidth' to 78 characters. autocmd FileType text setlocal textwidth=78 augroup END " Add optional packages. " " The matchit plugin makes the % command work better, but it is not backwards " compatible. " The ! means the package won't be loaded right away but when plugins are " loaded during initialization. if has('syntax') && has('eval') packadd! matchit endif