Skip to content

Instantly share code, notes, and snippets.

@XavierJece
XavierJece / aliases.zsh
Last active September 18, 2023 13:40
My personal aliases from zsh
alias ls='ls -la'c # colorize `ls` output
alias zshreload='source ~/.zshrc' # reload ZSH
alias shtop='sudo htop' # run `htop` with root rights
alias grep='grep --color=auto' # colorize `grep` output
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
alias less='less -R'
alias g='git'
alias gs='gst'
@XavierJece
XavierJece / JSON VS CODE
Created February 27, 2021 13:19
Configurações personalizadas do vs code
{
"tabnine.experimentalAutoImports": true,
// Define o tema do VSCode
"workbench.colorTheme": "Omni",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
// Configura tamanho e família da fonte
"editor.fontSize": 18,
@XavierJece
XavierJece / hyper.js
Last active February 16, 2021 17:03
Configurations Hyper.js
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',