Batch updates to vim

This commit is contained in:
James Patrick 2024-01-19 13:44:25 -05:00
parent 35eb96254d
commit bac1c72662
No known key found for this signature in database
2 changed files with 10 additions and 0 deletions

View File

@ -36,6 +36,7 @@ endfunction
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Brief Config:
" -> Sane Config Base
" -> Syntax Override AutoCMDs
" -> Leader Key
" -> Clip
" -> Has Async Var
@ -44,6 +45,9 @@ endfunction
" https://github.com/tpope/vim-sensible
source ~/.vim/vimrc.d/sensible.vim
" Syntax Override AutoCMDs
source ~/.vim/vimrc.d/syntaxoverrides.vim
" Take me to your leader
let mapleader=","
@ -101,8 +105,12 @@ Plug 'vim-airline/vim-airline'
" Vim Eunuch : Helpers for UNIX
Plug 'tpope/vim-eunuch'
" Vim Polygot : A solid language pack for Vim.
Plug 'sheerun/vim-polyglot'
" Nerdtree : A tree explorer plugin for vim.
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
map <leader>po :NERDTreeToggle<cr>
" Incsearch : Improved incremental searching for Vim
Plug 'haya14busa/incsearch.vim'
@ -125,6 +133,7 @@ Plug 'junegunn/fzf.vim'
let g:fzf_layout = { 'down': '40%' }
map <leader><tab> :History<cr>
map <leader>b :Buffers<cr>
map <leader><space> :Files<cr>
" ALE : Asynchronous Lint Engine
Plug 'dense-analysis/ale', Cond(g:has_async)

View File

@ -0,0 +1 @@
autocmd BufNewFile,BufRead ~/.ssh/config.d/* set syntax=sshconfig