Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== vi/vim ====== * {{:wiki:vim_cheat_sheet_for_programmers_screen.png?linkonly|Vim}} * {{ :wiki:vim_cheatsheet.pdf |Vim | Alt 1}} ====== Configuration Commands ====== * '':colo <color scheme>'', set the color scheme * '':colo<space><tab>'', to list color schemes and be able to select one * '':colo<space>Ctrl+d'', alternative to list color schemes ====== Info Commands ====== * ''Ctrl+g'' or ''<count> Ctrl+g'' to display file name and path or full path ====== Sample Config ====== =====Configuration/.vimrc===== * ''~/.vimrc'' is the config file for Vim. <code> colorscheme ron syntax enable set number set tabstop=4 set softtabstop=4 set shiftwidth=4 set expandtab set smartcase " ignorecase </code> ===== Basic ===== <code bash> wget -O .vimrc https://raw.githubusercontent.com/amix/vimrc/master/vimrcs/basic.vim </code> vi.txt Last modified: 2023/04/13 11:28by mgupton