mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
- Added the basic setting for functional LSP. - Split configurations into multiple files suitable for Lazy usage.
18 lines
376 B
VimL
18 lines
376 B
VimL
""""""""""""""""""""""""""""""""""""""
|
|
"
|
|
" Source common configs from VIM
|
|
"
|
|
""""""""""""""""""""""""""""""""""""""
|
|
let $VIMDIR="$HOME/.vim"
|
|
let $NVIMDIR="$HOME/.config/nvim"
|
|
|
|
" Load VIM Configurations
|
|
source $VIMDIR/configs.vim
|
|
|
|
" Load Keybindings from VIM
|
|
source $VIMDIR/key_maps.vim
|
|
|
|
" Save session files to $HOME/.vim/session directory
|
|
let g:session_dir="$VIMDIR/session"
|
|
|