ubuntu:vim:vimrc
Differences
This shows you the differences between two versions of the page.
ubuntu:vim:vimrc [2019/12/04 22:10] – created peter | ubuntu:vim:vimrc [2019/12/14 18:30] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== VIM - .vimrc ====== | ||
- | |||
- | <file vim .vimrc> | ||
- | "=== === | ||
- | |||
- | " Set ' | ||
- | " have made, as well as sanely reset options when re-sourcing .vimrc | ||
- | set nocompatible | ||
- | |||
- | set t_Co=256 | ||
- | · | ||
- | " | ||
- | |||
- | colorscheme badwolf········· | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | |||
- | |||
- | " Enable syntax highlighting | ||
- | syntax on | ||
- | |||
- | |||
- | " | ||
- | |||
- | nnoremap <F2> :set invpaste paste?< | ||
- | imap <F2> < | ||
- | set pastetoggle=< | ||
- | set showmode | ||
- | |||
- | " | ||
- | |||
- | " 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 | ||
- | |||
- | |||
- | " 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 | ||
- | filetype indent plugin on | ||
- | |||
- | |||
- | " 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 | ||
- | |||
- | |||
- | " | ||
- | |||
- | " 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 < | ||
- | |||
- | |||
- | |||
- | " | ||
- | |||
- | " 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 $ <nop> | ||
- | " nnoremap ^ <nop> | ||
- | |||
- | |||
- | |||
- | " It visually selects the block of characters you added last time you were· | ||
- | " in INSERT mode. | ||
- | " | ||
- | " Highlight last inserted text | ||
- | " nnoremap gV `[v`] | ||
- | |||
- | |||
- | " | ||
- | |||
- | " 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 | ||
- | |||
- | |||
- | " 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:// | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | </ |
ubuntu/vim/vimrc.1575497450.txt.gz · Last modified: 2020/07/15 09:30 (external edit)