Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.146.206.87
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
vim /
vim80 /
[ HOME SHELL ]
Name
Size
Permission
Action
autoload
[ DIR ]
drwxr-xr-x
colors
[ DIR ]
drwxr-xr-x
compiler
[ DIR ]
drwxr-xr-x
doc
[ DIR ]
drwxr-xr-x
ftplugin
[ DIR ]
drwxr-xr-x
indent
[ DIR ]
drwxr-xr-x
keymap
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
macros
[ DIR ]
drwxr-xr-x
pack
[ DIR ]
drwxr-xr-x
plugin
[ DIR ]
drwxr-xr-x
print
[ DIR ]
drwxr-xr-x
spell
[ DIR ]
drwxr-xr-x
syntax
[ DIR ]
drwxr-xr-x
tutor
[ DIR ]
drwxr-xr-x
bugreport.vim
1.91
KB
-rw-r--r--
debian.vim
2.02
KB
-rw-r--r--
defaults.vim
4.02
KB
-rw-r--r--
delmenu.vim
645
B
-rw-r--r--
evim.vim
2.2
KB
-rw-r--r--
filetype.vim
54.74
KB
-rw-r--r--
ftoff.vim
280
B
-rw-r--r--
ftplugin.vim
971
B
-rw-r--r--
ftplugof.vim
337
B
-rw-r--r--
gvimrc_example.vim
1.56
KB
-rw-r--r--
indent.vim
767
B
-rw-r--r--
indoff.vim
282
B
-rw-r--r--
menu.vim
38.54
KB
-rw-r--r--
mswin.vim
3.32
KB
-rw-r--r--
optwin.vim
57.93
KB
-rw-r--r--
rgb.txt
17.36
KB
-rw-r--r--
scripts.vim
11.1
KB
-rw-r--r--
synmenu.vim
36.11
KB
-rw-r--r--
vimrc_example.vim
1.46
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : debian.vim
" Debian system-wide default configuration Vim set runtimepath=~/.vim,/var/lib/vim/addons,/usr/share/vim/vimfiles,/usr/share/vim/vim80,/usr/share/vim/vimfiles/after,/var/lib/vim/addons/after,~/.vim/after " Normally we use vim-extensions. If you want true vi-compatibility " remove change the following statements set nocompatible " Use Vim defaults instead of 100% vi compatibility set backspace=indent,eol,start " more powerful backspacing " Now we set some defaults for the editor set history=50 " keep 50 lines of command line history set ruler " show the cursor position all the time " modelines have historically been a source of security/resource " vulnerabilities -- disable by default, even when 'nocompatible' is set set nomodeline " Suffixes that get lower priority when doing tab completion for filenames. " These are files we are not likely to want to edit or read. set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc " We know xterm-debian is a color terminal if &term =~ "xterm-debian" || &term =~ "xterm-xfree86" set t_Co=16 set t_Sf=[3%dm set t_Sb=[4%dm endif " Some Debian-specific things if has("autocmd") if has('gui') " Must define this within the :if so it does not cause problems with " vim-tiny (which does not have +eval) function! <SID>MapExists(name, modes) for mode in split(a:modes, '\zs') if !empty(maparg(a:name, mode)) return 1 endif endfor return 0 endfunction " Make shift-insert work like in Xterm autocmd GUIEnter * if !<SID>MapExists("<S-Insert>", "nvso") | execute "map <S-Insert> <MiddleMouse>" | endif autocmd GUIEnter * if !<SID>MapExists("<S-Insert>", "ic") | execute "map! <S-Insert> <MiddleMouse>" | endif endif endif " Set paper size from /etc/papersize if available (Debian-specific) if filereadable("/etc/papersize") let s:papersize = matchstr(readfile('/etc/papersize', '', 1), '\p*') if strlen(s:papersize) exe "set printoptions+=paper:" . s:papersize endif endif
Close