vim-stuff
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
vim-stuff [2017/08/22 13:20] – created baumi | vim-stuff [2021/09/17 08:55] (current) – baumi | ||
---|---|---|---|
Line 1: | Line 1: | ||
~~META: | ~~META: | ||
date created = 2017-06-13 09:00 | date created = 2017-06-13 09:00 | ||
- | &date modified = 2017-06-13 09:00 | ||
~~ | ~~ | ||
====== vim Stuff ====== | ====== vim Stuff ====== | ||
Line 7: | Line 6: | ||
CTRL-W <arrow left / arrow right> switch window | CTRL-W <arrow left / arrow right> switch window | ||
+ | Open files in windows: | ||
+ | |||
+ | < | ||
+ | $ vim -o file1 file2 # horizontal split | ||
+ | $ vim -O file1 file2 # vertical split | ||
+ | </ | ||
===== Tabs ===== | ===== Tabs ===== | ||
< | < | ||
Line 17: | Line 22: | ||
< | < | ||
$ vim -d < | $ vim -d < | ||
+ | </ | ||
+ | |||
+ | ===== Mouse woes in Debian 9+ ===== | ||
+ | Use shift+Mouse button to paste stuff. | ||
+ | |||
+ | ===== .vimrc ===== | ||
+ | <file vim .vimrc> | ||
+ | " | ||
+ | syntax on | ||
+ | "cope with black background | ||
+ | set background=dark | ||
+ | "honor modelines in files | ||
+ | set modeline | ||
+ | set modelines=5 | ||
+ | " | ||
+ | set autoindent | ||
+ | set backspace=indent, | ||
+ | " | ||
+ | set laststatus=2 | ||
+ | " | ||
+ | set ruler | ||
+ | " | ||
+ | set number | ||
+ | " | ||
+ | set listchars=tab:> | ||
+ | </ | ||
+ | ===== Modelines ===== | ||
+ | ==== python ==== | ||
+ | <code python> | ||
+ | # vim: | ||
</ | </ | ||
vim-stuff.1503400807.txt.gz · Last modified: 2017/08/22 13:20 by baumi