good lawd this indentation

This commit is contained in:
Tyrel Souza 2021-11-03 20:38:25 -04:00
parent b2ee5e515d
commit 18b2004401

View File

@ -2,19 +2,19 @@ syntax enable
let mapleader = " " let mapleader = " "
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
Plug 'ervandew/supertab' Plug 'ervandew/supertab'
Plug 'preservim/nerdtree' Plug 'preservim/nerdtree'
Plug 'liuchengxu/space-vim-dark' Plug 'liuchengxu/space-vim-dark'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim' Plug 'junegunn/fzf.vim'
Plug 'mhinz/vim-startify' Plug 'mhinz/vim-startify'
Plug 'jeetsukumaran/vim-buffergator' Plug 'jeetsukumaran/vim-buffergator'
Plug 'ap/vim-buftabline' Plug 'ap/vim-buftabline'
Plug 'airblade/vim-gitgutter' Plug 'airblade/vim-gitgutter'
Plug 'majutsushi/tagbar' Plug 'majutsushi/tagbar'
Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline'
" Plug 'ctrlpvim/ctrlp.vim' " Replaced with telescope " Plug 'ctrlpvim/ctrlp.vim' " Replaced with telescope
Plug 'enricobacis/vim-airline-clock' Plug 'enricobacis/vim-airline-clock'
Plug 'nvim-lua/plenary.nvim' Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim' Plug 'nvim-telescope/telescope.nvim'
call plug#end() call plug#end()
@ -69,4 +69,6 @@ nnoremap <leader>fg <cmd>Telescope live_grep<cr>
nnoremap <leader>fb <cmd>Telescope buffers<cr> nnoremap <leader>fb <cmd>Telescope buffers<cr>
nnoremap <leader>fh <cmd>Telescope help_tags<cr> nnoremap <leader>fh <cmd>Telescope help_tags<cr>
let g:python_host_prog = '/home/tyrel/.nvim.pythonenv2/bin/python'
let g:python3_host_prog = '/home/tyrel/.nvim.pythonenv/bin/python'