Changeset 5b70e1b in dotfiles for vim


Ignore:
Timestamp:
Jun 18, 2021, 9:03:13 PM (4 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
4ece9d5
Parents:
8f2219b
Message:

Add plugin management to vim

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vim/.vimrc

    r8f2219b r5b70e1b  
     1" Initialization
     2filetype plugin on
     3
     4call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged')
     5Plug 'tpope/vim-fugitive'
     6call plug#end()
     7
    18" Emacs keys in insert mode
    29imap <C-p> <Up>
     
    3542  return [text_before, text_after]
    3643endfunction
     44"
Note: See TracChangeset for help on using the changeset viewer.