Skip to content

Instantly share code, notes, and snippets.

@mayelespino
mayelespino / vimrc
Created March 25, 2022 04:59
vimrc set-up
" URL: https://vim.wikia.com/wiki/Example_vimrc
" Authors: https://vim.wikia.com/wiki/Vim_on_Libera_Chat
" Description: A minimal, but feature rich, example .vimrc. If you are a
" newbie, basing your first .vimrc on this file is a good choice.
" If you're a more advanced user, building your own .vimrc based
" on this file is still a good idea.
"------------------------------------------------------------
" Enable syntax highlighting
if has('syntax')
@mayelespino
mayelespino / zprofile
Last active March 25, 2022 04:56
zshell set up
. ./.zshrc
alias l='ls -F'
alias ll='ls -alF'
alias c='clear'
alias L='ls -F | grep /'
alias d='pushd .'
alias D='dirs -l -v | grep -v 0'
alias gh='hostrory | grep '
alias push='git push'
alias pull='git pull'
alias commit='git commit -am '