homemade vim snippets

This commit is contained in:
Noah Masur 2021-04-11 17:15:26 -04:00
parent 2a605f703d
commit 9c1111f4de
4 changed files with 25 additions and 2 deletions

View File

@ -94,7 +94,8 @@ endif
" Custom Commands " Custom Commands
"---------------- "----------------
command Vimrc edit ~/.config/nvim/init.vim " Edit .vimrc (this file) command! Vimrc edit ~/.config/nvim/init.vim " Edit .vimrc (this file)
command! Refresh source ~/.config/nvim/init.vim " Refresh from .vimrc (this file)
" Custom Keybinds " Custom Keybinds
"---------------- "----------------
@ -160,9 +161,19 @@ nnoremap <Leader>wm :only<cr>
" Exit terminal mode (requires Alacritty escape) " Exit terminal mode (requires Alacritty escape)
tnoremap <S-CR> <C-\><C-n> tnoremap <S-CR> <C-\><C-n>
" Reload Vimrc settings
nnoremap <Leader>rr :Refresh<cr>
nnoremap <Leader>rp :Refresh<cr> :PlugInstall<cr>
" Open file tree " Open file tree
noremap <silent> <Leader>ft :Fern . -drawer -width=35 -toggle<CR><C-w>= noremap <silent> <Leader>ft :Fern . -drawer -width=35 -toggle<CR><C-w>=
" Snippets
"---------
nnoremap ,sh :-1read $DOTS/shell/templates/skeleton.sh<CR>Gdd03kC
nnoremap ,py :-1read $DOTS/shell/templates/skeleton.py<CR>Gdd08kC
" LaTeX Settings " LaTeX Settings
"--------------- "---------------

View File

@ -5,7 +5,7 @@ fisher update
# Set $PATH for finding programs # Set $PATH for finding programs
set -U FISH_DIR (readlink ~/.config/fish) set -U FISH_DIR (readlink ~/.config/fish)
set -U DOTS (dirname $FISH_DIR) set -Ux DOTS (dirname $FISH_DIR)
set -U CDPATH . $HOME set -U CDPATH . $HOME
set -U EDITOR nvim set -U EDITOR nvim
set -U PROJ $HOME/dev/work set -U PROJ $HOME/dev/work

View File

@ -0,0 +1,12 @@
#!/usr/bin/env python
"""
Program
"""
def main():
"""Run the program"""
pass
if __name__ == "__main__":
main()