Compare commits
3 Commits
0e8845a11c
...
c50d77359e
Author | SHA1 | Date |
---|---|---|
The Magician | c50d77359e | |
The Magician | fcdf8c9da0 | |
The Magician | 550691dd21 |
|
@ -0,0 +1,5 @@
|
|||
[init]
|
||||
defaultBranch = main
|
||||
[user]
|
||||
name = The Magician
|
||||
email = themagician@engineer.com
|
|
@ -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"
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue