Skip to content

Commit

Permalink
(chore) cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
PrashanthaTP committed Sep 1, 2021
1 parent 636e911 commit 0823d51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
6 changes: 3 additions & 3 deletions nvim/general/keybindings.vim
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inoremap jk <ESC>

" yanking ----- {{{
"to match the behaviour of 'C' and 'D'
nnoremap Y y$
nnoremap Y y$
"highlight the yanked area for an extened period
augroup highlight_yank
autocmd!
Expand All @@ -22,7 +22,7 @@ nnoremap N Nzz
"
" breakpoints ----- {{{
"puts the next line at the end of current line : mz = create a mark called z , do J, `z = goto mark z
nnoremap J mzJ`z
nnoremap J mzJ`z
"undo breakpoints
inoremap . .<C-g>u
inoremap , ,<C-g>u
Expand All @@ -31,7 +31,7 @@ inoremap ? ?<C-g>u
" }}}
"
" moving lines with ALT key ----- {{{
"https://vim.fandom.com/wiki/Moving_lines_up_or_down
"https://vim.fandom.com/wiki/Moving_lines_up_or_down
nnoremap <A-j> :m .+1<CR>==
nnoremap <A-k> :m .-2<CR>==
inoremap <A-j> <Esc>:m .+1<CR>==gi
Expand Down
1 change: 0 additions & 1 deletion nvim/general/leader.vim
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ nnoremap <silent> <Leader>9 :exe "vertical resize " . (winwidth(0) * 2/3)<CR>
" }}}

"nmap <leader>ws :

7 changes: 0 additions & 7 deletions nvim/plugs/plugins.vim
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,19 @@ Plug 'preservim/nerdtree'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'tpope/vim-fugitive'
Plug 'ryanoasis/vim-devicons'

" Track the engine.
Plug 'SirVer/ultisnips'
" Snippets are separated from the engine. Add this if you want them:
Plug 'honza/vim-snippets'

"Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
"Plug 'junegunn/fzf.vim'

Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'

Plug 'neoclide/coc.nvim', {'branch': 'release'}
"Plug 'w0rp/ale'
Plug 'sheerun/vim-polyglot'

Plug 'itchyny/lightline.vim'

Plug 'preservim/nerdcommenter'

Plug 'tpope/vim-surround'

"Plug 'mhinz/vim-startify'
Expand Down

0 comments on commit 0823d51

Please sign in to comment.