Skip to content

Instantly share code, notes, and snippets.

0x0 0xdd39
0x1 0xba22
0x2 0x2e83
0x3 0x883c
0x4 0x3d11
0x5 0x4492
0x6 0xaa18
0x7 0xbe63
0x8 0xe3b2
0x9 0xfb63
0x0 0xdd39
0x1 0xba22
0x2 0x2e83
0x3 0x883c
0x4 0x3d11
0x5 0x4492
0x6 0xaa18
0x7 0xbe63
0x8 0xe3b2
0x9 0xfb63
{
"global": {
"ask_for_confirmation_before_quitting": true,
"check_for_updates_on_startup": true,
"show_in_menu_bar": true,
"show_profile_name_in_menu_bar": false,
"unsafe_ui": false
},
"profiles": [
{
" vim-plug: Vim plugin manager
" ============================
"
" Download plug.vim and put it in ~/.vim/autoload
"
" curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
" https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
"
" Edit your .vimrc
"
packadd! dracula
syntax enable
colorscheme dracula
packadd! rust.vim
set expandtab
set autoindent
set shiftround
set shiftwidth=2
set smarttab
set tabstop=4
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AllowClipboardAccess</key>
<false/>
<key>AlternateMouseScroll</key>
<true/>
<key>AppleAntiAliasingThreshold</key>
<integer>1</integer>
@crsayen
crsayen / .zshrc_iterm
Last active November 3, 2020 21:18
.zshrc for iterm2
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
alias ls='lsd'
alias python=python3
alias pip=pip3
alias sshrestart='sudo launchctl unload /System/Library/LaunchDaemons/ssh.plist'
# Path to your oh-my-zsh installation.
export ZSH="/Users/chris/.oh-my-zsh"
export PATH="/Library/Frameworks/Python.framework/Versions/3.8/bin:/Users/chris/.cargo/bin:/Library/Frameworks/Python.framework/Versions/3.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/bin/:/Users/chris/Library/Android/sdk/tools:/Users/chris/Library/Android/sdk/platform-tools"
@crsayen
crsayen / .p10k.zsh
Last active November 3, 2020 21:18
powerlevel 10k config
# Generated by Powerlevel10k configuration wizard on 2020-07-23 at 21:26 EDT.
# Based on romkatv/powerlevel10k/config/p10k-rainbow.zsh, checksum 38309.
# Wizard options: awesome-fontconfig + powerline, large icons, rainbow, unicode,
# 12h time, angled separators, sharp heads, flat tails, 2 lines, dotted, no frame,
# lightest-ornaments, sparse, many icons, concise, instant_prompt=off.
# Type `p10k configure` to generate another config.
#
# Config for Powerlevel10k with powerline prompt style with colorful background.
# Type `p10k configure` to generate your own config based on it.
#
@crsayen
crsayen / .hyper.js
Created August 24, 2020 22:27
hyper congfig
module.exports = {
config: {
updateChannel: "stable",
webGLRenderer: false,
fontSize: 16,
fontFamily: "OperatorMono Nerd Font",
fontWeight: "bold",
fontWeightBold: "bold",
lineHeight: 1,
letterSpacing: 0,
@crsayen
crsayen / .prettierrc
Created August 24, 2020 22:21
basic prettier config
{
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true
}