33 items
NAME ↑ SIZE MODIFIED PERMS ACTIONS
.. / Parent Directory
autoload — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
colors — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
compiler — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
doc — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
ftplugin — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
indent — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
keymap — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
lang — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
macros — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
pack — dir
2026-04-29 09:50 · rwxr-xr-x
2026-04-29 09:50 rwxr-xr-x
plugin — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
print — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
spell — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
syntax — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
tutor — dir
2026-06-03 15:44 · rwxr-xr-x
2026-06-03 15:44 rwxr-xr-x
bugreport.vim — 1.88 KB
2026-04-29 09:50 · rw-r--r--
1.88 KB 2026-04-29 09:50 rw-r--r--
defaults.vim — 4 KB
2026-04-29 09:50 · rw-r--r--
4 KB 2026-04-29 09:50 rw-r--r--
delmenu.vim — 806 B
2026-04-29 09:50 · rw-r--r--
806 B 2026-04-29 09:50 rw-r--r--
evim.vim — 2.08 KB
2026-04-29 09:50 · rw-r--r--
2.08 KB 2026-04-29 09:50 rw-r--r--
filetype.vim — 60.25 KB
2026-04-29 09:50 · rw-r--r--
60.25 KB 2026-04-29 09:50 rw-r--r--
ftoff.vim — 280 B
2026-04-29 09:50 · rw-r--r--
280 B 2026-04-29 09:50 rw-r--r--
ftplugin.vim — 971 B
2026-04-29 09:50 · rw-r--r--
971 B 2026-04-29 09:50 rw-r--r--
ftplugof.vim — 337 B
2026-04-29 09:50 · rw-r--r--
337 B 2026-04-29 09:50 rw-r--r--
gvimrc_example.vim — 1.6 KB
2026-04-29 09:50 · rw-r--r--
1.6 KB 2026-04-29 09:50 rw-r--r--
indent.vim — 767 B
2026-04-29 09:50 · rw-r--r--
767 B 2026-04-29 09:50 rw-r--r--
indoff.vim — 282 B
2026-04-29 09:50 · rw-r--r--
282 B 2026-04-29 09:50 rw-r--r--
menu.vim — 41.16 KB
2026-04-29 09:50 · rw-r--r--
41.16 KB 2026-04-29 09:50 rw-r--r--
mswin.vim — 3.35 KB
2026-04-29 09:50 · rw-r--r--
3.35 KB 2026-04-29 09:50 rw-r--r--
optwin.vim — 65.52 KB
2026-04-29 09:50 · rw-r--r--
65.52 KB 2026-04-29 09:50 rw-r--r--
rgb.txt — 17.36 KB
2026-04-29 09:50 · rw-r--r--
17.36 KB 2026-04-29 09:50 rw-r--r--
scripts.vim — 11.44 KB
2026-04-29 09:50 · rw-r--r--
11.44 KB 2026-04-29 09:50 rw-r--r--
synmenu.vim — 38.89 KB
2026-04-29 09:50 · rw-r--r--
38.89 KB 2026-04-29 09:50 rw-r--r--
vimrc_example.vim — 1.34 KB
2026-04-29 09:50 · rw-r--r--
1.34 KB 2026-04-29 09:50 rw-r--r--
ONLINE
vim82
33 items
16:46:23
TERMINAL FM
Edit
Preview
Download
Rename
Copy
Chmod
Delete
" An example for a gvimrc file. " The commands in this are executed when the GUI is started, after the vimrc " has been executed. " " Maintainer: Bram Moolenaar " Last change: 2016 Apr 05 " " To use it, copy it to " for Unix: ~/.gvimrc " for Amiga: s:.gvimrc " for MS-Windows: $VIM\_gvimrc " for Haiku: ~/config/settings/vim/gvimrc " for OpenVMS: sys$login:.gvimrc " Make external commands work through a pipe instead of a pseudo-tty "set noguipty " set the X11 font to use " set guifont=-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1 set ch=2 " Make command line two lines high set mousehide " Hide the mouse when typing text " Make shift-insert work like in Xterm map map! " Only do this for Vim version 5.0 and later. if version >= 500 " Switch on syntax highlighting if it wasn't on yet. if !exists("syntax_on") syntax on endif " For Win32 version, have "K" lookup the keyword in a help file "if has("win32") " let winhelpfile='windows.hlp' " map K :execute "!start winhlp32 -k " . winhelpfile "endif " Set nice colors " background for normal text is light grey " Text below the last line is darker grey " Cursor is green, Cyan when ":lmap" mappings are active " Constants are not underlined but have a slightly lighter background highlight Normal guibg=grey90 highlight Cursor guibg=Green guifg=NONE highlight lCursor guibg=Cyan guifg=NONE highlight NonText guibg=grey80 highlight Constant gui=NONE guibg=grey95 highlight Special gui=NONE guibg=grey95 endif