vimrc updates
This commit is contained in:
parent
2925c5b70e
commit
373ce34f76
1 changed files with 8 additions and 2 deletions
10
vim/vimrc
10
vim/vimrc
|
@ -25,7 +25,7 @@ set backspace=eol,start,indent " make backspace not be stupid
|
||||||
set whichwrap+=<,>,h,l
|
set whichwrap+=<,>,h,l
|
||||||
|
|
||||||
set list
|
set list
|
||||||
set listchars=trail:·,precedes:«,extends:»,eol:↲,tab:⦙\
|
set listchars=trail:·,precedes:«,extends:»,eol:↲,tab:→\
|
||||||
set ignorecase " ignore case when searching
|
set ignorecase " ignore case when searching
|
||||||
set smartcase " be "smart" about case when searching
|
set smartcase " be "smart" about case when searching
|
||||||
set hlsearch " highlight search results
|
set hlsearch " highlight search results
|
||||||
|
@ -232,6 +232,11 @@ endtry
|
||||||
hi clear SpellBad
|
hi clear SpellBad
|
||||||
hi SpellBad gui=underline cterm=italic
|
hi SpellBad gui=underline cterm=italic
|
||||||
|
|
||||||
|
" Highlight trailing space as error
|
||||||
|
match ErrorMsg '\s\+$'
|
||||||
|
|
||||||
|
" List items are always weird distracting colors
|
||||||
|
hi SpecialKey ctermfg=238
|
||||||
|
|
||||||
"--- Mappings
|
"--- Mappings
|
||||||
map <C-n> :bnext<cr> " next buffer
|
map <C-n> :bnext<cr> " next buffer
|
||||||
|
@ -284,7 +289,8 @@ let g:netrw_winsize = 25
|
||||||
let g:netrw_browse_split = 4
|
let g:netrw_browse_split = 4
|
||||||
augroup netrw_mapping
|
augroup netrw_mapping
|
||||||
autocmd!
|
autocmd!
|
||||||
autocmd filetype netrw call NetrwMapping()
|
autocmd FileType netrw call NetrwMapping()
|
||||||
|
autocmd FileType netrw setl bufhidden=wipe
|
||||||
augroup END
|
augroup END
|
||||||
function! NetrwMapping()
|
function! NetrwMapping()
|
||||||
noremap <buffer> \e :bd<CR>
|
noremap <buffer> \e :bd<CR>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue