diff options
author | Daniel Schadt <kingdread@gmx.de> | 2020-10-06 11:36:55 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2020-10-06 11:36:55 +0200 |
commit | 34019bb2fd8ea9df62dae8c64e2268e4fe6cdb31 (patch) | |
tree | ddafe784f5734ce03f5323703e7fea1f2a122f9d /neovim | |
parent | f3faae2f72ee559796d9da4b4165db14d2176364 (diff) | |
download | dotfiles-34019bb2fd8ea9df62dae8c64e2268e4fe6cdb31.tar.gz dotfiles-34019bb2fd8ea9df62dae8c64e2268e4fe6cdb31.tar.bz2 dotfiles-34019bb2fd8ea9df62dae8c64e2268e4fe6cdb31.zip |
nvim: add ,b and mouse bindings
Diffstat (limited to 'neovim')
-rw-r--r-- | neovim/.config/nvim/init.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/neovim/.config/nvim/init.vim b/neovim/.config/nvim/init.vim index 0caedb1..d58bba4 100644 --- a/neovim/.config/nvim/init.vim +++ b/neovim/.config/nvim/init.vim @@ -239,6 +239,7 @@ map <F2> :TaskList<CR> " file finder mapping nmap ,e :Files<CR> +nmap ,b :Buffers<CR> nmap ,a :Ag<CR> " tags (symbols) in current file finder mapping nmap ,g :BTag<CR> @@ -354,6 +355,7 @@ let g:airline#extensions#whitespace#enabled = 0 "let g:airline_symbols.linenr = '⭡' set clipboard=unnamedplus inccommand=nosplit +set mouse=a let g:tex_flavor = "latex" au BufNewFile,BufRead *.tex,*.latex,*.sty,*.dtx,*.ltx set sw=2 sts=2 |