Skip to content

Instantly share code, notes, and snippets.

@arielcr
arielcr / times.csv
Created March 26, 2020 17:09
All the solvetimes as recorded in CLI Cube Timer, https://npmjs.org/package/cli-cube-timer
188.76 R' F' U R2 U L' D2 R' F2 R U F' U' L2 D B2 R2 F2 R' F2 1585242370136
@arielcr
arielcr / .vimrc
Last active April 14, 2022 00:23
MY VIMRC
" =========================== PLUGINS ============================
" Install vim-plug for vim and neovim
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
" Plugins
call plug#begin('~/.vim/plugged')
@arielcr
arielcr / .tmux.conf
Last active January 30, 2024 23:00
MY TMUX.CONF
##set -sa terminal-overrides "*:Tc"
## remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
## split panes using | and -
bind | split-window -h
bind - split-window -v
@arielcr
arielcr / alacritty.toml
Created January 30, 2024 21:57
Alacritty Conf
import = [
"~/.config/alacritty/themes/themes/tomorrow_night.toml"
]
[font]
size = 14.0
[font.normal]
family = "JetBrainsMono Nerd Font"
style = "Regular"