mirror of
1
0
Fork 0

changed styling and order

This commit is contained in:
Caleb Taylor 2019-08-07 12:15:42 -07:00
parent aca5271868
commit 1fde665ede
1 changed files with 13 additions and 10 deletions

View File

@ -19,11 +19,20 @@ To install for multiple users, the repository needs to be cloned to a location a
Naturally, `/opt/vim_runtime` can be any directory, as long as all the users specified have read access.
## What was Changed?
`basic.vim`
let mapleader = " "
## What was Added?
Some mappings are commented out
basic.vim
`basic.vim`
" Display line numbers
set number
" Treat long lines as break lines (useful when moving around in them)
map j gj
@ -66,7 +75,7 @@ basic.vim
map <Leader>p :set paste<CR>o<esc>"*]p:set nopaste<cr>
vmap <Leader>y "+y
plugins_config.vim
`plugins_config.vim`
let g:EasyMotion_do_mapping = 0 " Disable default mappings
@ -99,19 +108,13 @@ plugins_config.vim
" Close vim if the only window left open is a NERDTree
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
## What was Changed?
basic.vim
let mapleader = " "
## Removed
basic.vim
`basic.vim`
map <leader>pp :setlocal paste!<cr>
plugins_config.vim
`plugins_config.vim`
map <leader>nn :NERDTreeToggle<cr>
map <leader>nb :NERDTreeFromBookmark<Space>