Compare commits

...

3 Commits

Author SHA1 Message Date
The Magician c50d77359e Add .gitconfig 2023-12-10 15:33:34 +00:00
The Magician fcdf8c9da0 Add .vimrc 2023-12-09 20:20:56 +00:00
The Magician 550691dd21 Add gca alias 2023-12-09 20:20:33 +00:00
3 changed files with 29 additions and 0 deletions

5
git/.gitconfig Normal file
View File

@ -0,0 +1,5 @@
[init]
defaultBranch = main
[user]
name = The Magician
email = themagician@engineer.com

View File

@ -12,6 +12,7 @@ alias ga="git add"
alias gc="git commit"
alias gca="git commit -a"
alias gp="git push"
alias gpu="git push -u origin main"
alias gd="git diff"
alias gs="git status"

23
vim/.vimrc Normal file
View File

@ -0,0 +1,23 @@
set nocompatible
if filereadable(expand('~/.vim/autoload/plug.vim'))
"let g:polyglot_disabled = ['markdown.plugin'] " Disable vim-polyglot's Markdown so we can use vim-pandoc instead
call plug#begin('~/.local/share/vim/plugins')
Plug 'sheerun/vim-polyglot'
Plug 'vim-pandoc/vim-pandoc'
Plug 'mattn/emmet-vim'
Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' }
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug '~/code/zk.vim/'
call plug#end()
autocmd BufEnter ~/dox/zettelkasten/* set filetype=markdown
endif
set number
set relativenumber