fugitive and himlaya

This commit is contained in:
Tyrel Souza 2022-02-08 16:58:38 -05:00
parent 3ec063b8b8
commit e1e36e512c

View File

@ -2,6 +2,7 @@ syntax enable
let mapleader = " " let mapleader = " "
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
Plug 'Yggdroot/indentLine'
Plug 'rmagatti/auto-session' Plug 'rmagatti/auto-session'
Plug 'rmagatti/session-lens' Plug 'rmagatti/session-lens'
Plug 'ludovicchabant/vim-gutentags' Plug 'ludovicchabant/vim-gutentags'
@ -28,6 +29,9 @@ call plug#begin('~/.vim/plugged')
Plug 'sickill/vim-monokai' Plug 'sickill/vim-monokai'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'flebel/vim-mypy', { 'for': 'python', 'branch': 'bugfix/fast_parser_is_default_and_only_parser' } Plug 'flebel/vim-mypy', { 'for': 'python', 'branch': 'bugfix/fast_parser_is_default_and_only_parser' }
Plug 'soywod/himalaya', {'rtp': 'vim'}
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-rhubarb'
call plug#end() call plug#end()
lua << EOF lua << EOF
@ -114,6 +118,7 @@ noremap <F1> :set invnumber invrelativenumber<CR>
"Tagbar "Tagbar
" "
noremap <F8> :Tagbar<CR> noremap <F8> :Tagbar<CR>
let g:tagbar_autofocus=1
" Session Lens " Session Lens
lua <<EOF lua <<EOF
@ -165,3 +170,15 @@ EOF
"Guten Tags "Guten Tags
set statusline+=%{gutentags#statusline()} set statusline+=%{gutentags#statusline()}
" Himalaya Email
let g:himalaya_mailbox_picker = 'telescope'
" Indent Line
let g:indentLine_char = '│'
" GBrowse open current line
nnoremap <leader>gb :.GBrowse<CR>