diff options
author | Urbain Vaes <urbain@vaes.uk> | 2016-04-30 01:15:18 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2016-04-30 01:15:18 +0100 |
commit | bc990a764568fb773e1f85cef395b0391d2b982d (patch) | |
tree | d8c77e6385fbb5a887804323451ab00fd32fdf94 | |
parent | b7e9f9f05b1071f9c42a528551828bfeeab3c1a5 (diff) |
Add lldb and splitJoin plugins
-rw-r--r-- | vim/.vim/.gitignore | 1 | ||||
-rw-r--r-- | vim/.vim/.init.vim-rplugin~ | 12 | ||||
-rw-r--r-- | vim/.vimrc | 14 |
3 files changed, 15 insertions, 12 deletions
diff --git a/vim/.vim/.gitignore b/vim/.vim/.gitignore index 39e598f..55aa2a4 100644 --- a/vim/.vim/.gitignore +++ b/vim/.vim/.gitignore @@ -1,3 +1,4 @@ +.init.vim-* .netrwhist plugged vimundo/* diff --git a/vim/.vim/.init.vim-rplugin~ b/vim/.vim/.init.vim-rplugin~ deleted file mode 100644 index e1137d2..0000000 --- a/vim/.vim/.init.vim-rplugin~ +++ /dev/null @@ -1,12 +0,0 @@ -" python3 plugins -call remote#host#RegisterPlugin('python3', '/home/urbain/.vim/plugged/deoplete.nvim/rplugin/python3/deoplete', [ - \ {'sync': 1, 'name': '_deoplete', 'type': 'function', 'opts': {}}, - \ ]) - - -" ruby plugins - - -" python plugins - - @@ -4,6 +4,17 @@ let maplocalleader = "\\" "" Plugins call plug#begin('~/.vim/plugged') +Plug 'critiqjo/lldb.nvim' +nmap <c-d>n :LLsession new +nmap <c-d>b <Plug>LLBreakSwitch +nmap <c-d>c :LL continue<cr> +nmap <c-d>d :LLmode debug<cr> +nmap <c-d>z :LLmode code<cr> +nmap <c-d>l :LL process launch<cr> +nmap <c-d>p :LL print <C-R>=expand('<cword>')<CR> +vmap <c-d>p :<C-U>LL print <C-R>=lldb#util#get_selection()<CR><CR> + +Plug 'AndrewRadev/splitjoin.vim' Plug 'chriskempson/base16-vim' Plug 'airblade/vim-gitgutter' Plug 'altercation/vim-colors-solarized' @@ -113,6 +124,9 @@ Plug 'tpope/vim-sensible' Plug 'tpope/vim-surround' Plug 'tpope/vim-unimpaired' Plug 'tpope/vim-vinegar' +Plug 'tpope/vim-rsi' +let g:rsi_no_meta = 1 + Plug 'troydm/zoomwintab.vim' Plug 'vim-scripts/gmsh.vim' Plug 'holomorph/vim-freefem' |