vim:vimrc
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
vim:vimrc [2016/10/13 17:55] – created peter | vim:vimrc [2021/02/11 16:48] (current) – peter | ||
---|---|---|---|
Line 2: | Line 2: | ||
- | < | + | |
+ | ---- | ||
+ | |||
+ | < | ||
+ | |||
+ | "=== === | ||
+ | |||
+ | " Set ' | ||
+ | " have made, as well as sanely reset options when re-sourcing .vimrc | ||
+ | set nocompatible | ||
+ | |||
+ | " Specify encoding. | ||
+ | set encoding=utf-8 | ||
+ | |||
+ | " Specify file encoding. | ||
+ | "et fileencodings=utf-8, | ||
+ | set fileencodings=utf-8 | ||
+ | |||
+ | " Specify file formats. | ||
+ | set fileformats=unix, | ||
+ | |||
+ | |||
+ | " Take backup. | ||
+ | " if not, specify [ set nobackup ]. | ||
+ | set backup | ||
+ | |||
+ | " Specify backup directory. | ||
+ | "set backupdir=~/ | ||
+ | |||
+ | " Number of search histories. | ||
+ | set history=50 | ||
+ | |||
+ | " Terminal Colors. | ||
+ | set t_Co=256 | ||
+ | |||
+ | |||
+ | " Source a global configuration file if available | ||
+ | if filereadable("/ | ||
+ | source / | ||
+ | endif | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | " | ||
+ | " Uncomment the following to have Vim jump to the last position when | ||
+ | " reopening a file | ||
+ | if has(" | ||
+ | " | ||
+ | endif | ||
+ | |||
+ | |||
+ | " | ||
+ | |||
+ | colorscheme badwolf | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | |||
+ | |||
+ | " If using a dark background within the editing area and syntax highlighting | ||
+ | " turn on this option as well | ||
+ | "#set background=dark | ||
+ | |||
+ | |||
+ | " Vim5 and later versions support syntax highlighting. | ||
+ | " Uncommenting the next line enables syntax highlighting by default. | ||
+ | " Enable syntax highlighting | ||
+ | " | ||
+ | |||
+ | if has(" | ||
+ | syntax on | ||
+ | endif | ||
+ | |||
+ | |||
+ | " | ||
+ | |||
+ | " CTRL-A selects all. | ||
+ | map <C-a> < | ||
+ | |||
+ | |||
+ | " | ||
+ | |||
+ | nnoremap <F2> :set invpaste paste?< | ||
+ | imap <F2> < | ||
+ | set pastetoggle=< | ||
+ | set showmode | ||
+ | |||
+ | |||
+ | " copy paste with the exterior buffers | ||
+ | "vmap <C-c> "+y | ||
+ | "vmap <C-x> "+c | ||
+ | "vmap <C-v> "+gP | ||
+ | "" | ||
+ | "imap <C-v> < | ||
+ | " | ||
+ | |||
+ | |||
+ | |||
+ | " | ||
+ | |||
+ | " Display tabs as this amount of spaces. | ||
+ | " Sets tab stops to this amount of spaces. | ||
+ | set tabstop=2 | ||
+ | |||
+ | |||
+ | " Number of spaces a tab key counts for when editing. | ||
+ | set softtabstop=2 | ||
+ | |||
+ | |||
+ | " Turns tabs into spaces. | ||
+ | set expandtab | ||
+ | |||
+ | |||
+ | " Indentation settings for using 4 spaces instead of tabs. | ||
+ | " " Do not change ' | ||
+ | |||
+ | " Set the width for autoindents. | ||
+ | "set shiftwidth=2 | ||
+ | set shiftwidth=2 | ||
+ | |||
+ | |||
+ | " Show tabs with a little double arrow and trailing dots, and show whitespace past the end of the line with dots. | ||
+ | "set listchars=tab: | ||
+ | "set list | ||
+ | |||
+ | |||
+ | " | ||
+ | |||
+ | " Display line numbers on the left | ||
+ | "set number | ||
+ | |||
+ | |||
+ | " Shows the last command entered in the very bottom right. | ||
+ | set showcmd | ||
+ | |||
+ | |||
+ | " Draws a horizontal highlight on the line the cursor is on. | ||
+ | "set cursorline | ||
+ | " | ||
+ | " highlight current line | ||
+ | highlight CursorLine | ||
+ | "set cursorline | ||
+ | |||
+ | " highlight current column | ||
+ | highlight CursorColumn cterm=NONE ctermbg=DarkGrey ctermfg=NONE guibg=NONE guifg=NONE | ||
+ | "set cursorcolumn | ||
+ | |||
+ | |||
+ | |||
+ | " Attempt to determine the type of a file based on its name and possibly its | ||
+ | " contents. | ||
+ | " Use this to allow intelligent auto-indenting for each filetype, | ||
+ | " and for plugins that are filetype specific. | ||
+ | " filetype indent on | ||
+ | " | ||
+ | " Uncomment the following to have Vim load indentation rules and plugins | ||
+ | " according to the detected filetype. | ||
+ | if has(" | ||
+ | filetype plugin indent on | ||
+ | endif | ||
+ | |||
+ | |||
+ | |||
+ | " Better command-line completion. | ||
+ | " Vim automatically autocompletes things like filenames when you, for | ||
+ | " instance, run :e ~/ | ||
+ | " the matches you can cycle through if you turn on wildmenu. | ||
+ | set wildmenu | ||
+ | |||
+ | |||
+ | " Redraw only when we need to. | ||
+ | set lazyredraw | ||
+ | |||
+ | |||
+ | " When your cursor moves over a parenthesis-like character, the matching one | ||
+ | " will be highlighted as well. | ||
+ | set showmatch | ||
+ | |||
+ | |||
+ | " Underline the word under the cursor. | ||
+ | "let HlUnderCursor=1 | ||
+ | " | ||
+ | |||
+ | |||
+ | " Wrap lines. | ||
+ | " if not, specify [ set nowrap ] | ||
+ | set wrap | ||
+ | |||
+ | |||
+ | " default split to right and below | ||
+ | set splitbelow | ||
+ | set splitright | ||
+ | |||
+ | |||
+ | " | ||
+ | |||
+ | " Highlight matches. | ||
+ | " Highlight searches (use <C-L> to temporarily turn off highlighting; | ||
+ | " | ||
+ | set hlsearch | ||
+ | |||
+ | |||
+ | " Search as characters are entered. | ||
+ | set incsearch | ||
+ | |||
+ | |||
+ | " Use case insensitive search, except when using capital letters | ||
+ | set ignorecase | ||
+ | set smartcase | ||
+ | |||
+ | |||
+ | " Turn off search highlight | ||
+ | " nnoremap < | ||
+ | |||
+ | |||
+ | |||
+ | " The following are commented out as they cause vim to behave a lot | ||
+ | " differently from regular Vi. They are highly recommended though. | ||
+ | "set showcmd»»·" | ||
+ | "set showmatch»»·" | ||
+ | "set ignorecase»·»·" | ||
+ | "set smartcase»·»·" | ||
+ | "set incsearch»·»·" | ||
+ | "set autowrite»·»·" | ||
+ | "set hidden»»·" | ||
+ | "set mouse=a»·»·" | ||
+ | |||
+ | |||
+ | " | ||
+ | |||
+ | " Enable folding | ||
+ | "set foldenable | ||
+ | |||
+ | |||
+ | " Show all folds. | ||
+ | " This opens most folds by default. | ||
+ | " | ||
+ | " foldlevelstart is the starting level for opening a new buffer. | ||
+ | " to 0, all folds will be closed. | ||
+ | " always open. So setting it to 10 ensures that only very nested blocks of | ||
+ | " code are folded when opening a buffer. | ||
+ | " If set to zero,· | ||
+ | "set foldlevelstart=10 | ||
+ | |||
+ | |||
+ | " Folds can be nested. | ||
+ | " too many folds. | ||
+ | "set foldnestmax=10 | ||
+ | |||
+ | |||
+ | " Changed the mapping of < | ||
+ | " za opens/ | ||
+ | " space open/closes folds | ||
+ | " nnoremap < | ||
+ | |||
+ | |||
+ | " Fold based on indentation. | ||
+ | " Other acceptable values are marker, manual, expr, syntax, diff.· | ||
+ | " Run :help foldmethod to find out what each of those do. | ||
+ | "set foldmethod=indent | ||
+ | |||
+ | |||
+ | |||
+ | " | ||
+ | |||
+ | " Move vertically by visual line. | ||
+ | " These two allow us to move around lines visually. So if there' | ||
+ | " line that gets visually wrapped to two lines, j won't skip over the " | ||
+ | " part of the visual line in favor of the next " | ||
+ | " nnoremap j gj | ||
+ | " nnoremap k gk | ||
+ | |||
+ | |||
+ | |||
+ | " Overwrite existing movement bindings.· | ||
+ | " E and B, which are typically used to move forwards and backwards over visual | ||
+ | " words to these purposes. Next I bound the old way to < | ||
+ | " | ||
+ | " move to beginning/ | ||
+ | " nnoremap B ^ | ||
+ | " nnoremap E $ | ||
+ | " | ||
+ | " " $/^ doesn' | ||
+ | " nnoremap $ < | ||
+ | " nnoremap ^ < | ||
+ | |||
+ | |||
+ | |||
+ | " It visually selects the block of characters you added last time you were· | ||
+ | " in INSERT mode. | ||
+ | " | ||
+ | " Highlight last inserted text | ||
+ | " nnoremap gV `[v`] | ||
+ | |||
+ | |||
+ | " Remap displacements between panels. | ||
+ | " Allow one to use CTRL-J or CTRL-K etc to jump UP/DOWN. or CTRL-H or CTRL-L | ||
+ | " to jump LEFT/RIGHT into diff panels. | ||
+ | nnoremap <C-J> < | ||
+ | nnoremap <C-K> < | ||
+ | nnoremap <C-L> < | ||
+ | nnoremap <C-H> < | ||
+ | |||
+ | |||
+ | " tab for self completion | ||
+ | "imap <Tab> < | ||
+ | |||
+ | |||
+ | " | ||
+ | |||
+ | " Vim doesn' | ||
+ | " sure you never lose an action in Vim, but also makes it much more difficult | ||
+ | " to traverse around that tree. gundo.vim fixes this by displaying that undo | ||
+ | " tree in graphical form. Get it and don't look back. Here I've mapped it to | ||
+ | " ,u, which I like to think of as "super undo" | ||
+ | " | ||
+ | " toggle gundo | ||
+ | " nnoremap < | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | " When opening a new line and no filetype-specific indenting is enabled, keep | ||
+ | " " the same indent as the line you're currently on. Useful for READMEs, etc. | ||
+ | set autoindent | ||
+ | set smartindent | ||
+ | |||
+ | |||
+ | " Display the cursor position on the last line of the screen or in the status | ||
+ | " " line of a window | ||
+ | set ruler | ||
+ | " | ||
+ | " | ||
+ | set laststatus=2 | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | set confirm | ||
+ | " | ||
+ | " | ||
+ | set visualbell | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | set t_vb= | ||
+ | |||
+ | |||
+ | " Set the command window height to 2 lines, to avoid many cases of having to | ||
+ | " " "press < | ||
+ | "set cmdheight=2 | ||
+ | " | ||
+ | |||
+ | |||
+ | " | ||
+ | |||
+ | " Turn off auto-insert of comment. | ||
+ | " | ||
+ | " vim also provides a pasting register for you to paste text from the system clipboard.· | ||
+ | " You can use \"*p or \"+p depending on your system.· | ||
+ | " On a system without X11, such as OSX or Windows, you have to use the * register.· | ||
+ | " On an X11 system, like Linux, you can use both. | ||
+ | " | ||
+ | " http:// | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | |||
+ | |||
+ | " change colors for comments if it's set [ syntax on ] | ||
+ | " | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | |||
+ | <file vim .vimrc> | ||
"=== === | "=== === | ||
vim/vimrc.1476381353.txt.gz · Last modified: 2020/07/15 09:30 (external edit)