Skip to content

Instantly share code, notes, and snippets.

@stagfoo
Last active August 31, 2017 12:14
Show Gist options
  • Select an option

  • Save stagfoo/6fe2938bffe5e846e1e8e1e268d4673b to your computer and use it in GitHub Desktop.

Select an option

Save stagfoo/6fe2938bffe5e846e1e8e1e268d4673b to your computer and use it in GitHub Desktop.
New Computer Configs
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 16,
// font family with optional fallbacks
fontFamily: 'Fira Code, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',
// `BEAM` for |, `UNDERLINE` for _, `BLOCK` for █
cursorShape: 'UNDERLINE',
// color of the text
foregroundColor: '#ffffff',
// terminal background color
backgroundColor: '#2d1e3c',
// border color (window, tabs)
borderColor: '#746C9C',
// custom css to embed in the main window
css: '',
// custom css to embed in the terminal window
termCSS: '',
// set to `true` if you're using a Linux set up
// that doesn't shows native menus
// default: `false` on Linux, `true` on Windows (ignored on macOS)
showHamburgerMenu: '',
// set to `false` if you want to hide the minimize, maximize and close buttons
// additionally, set to `'left'` if you want them on the left, like in Ubuntu
// default: `true` on windows and Linux (ignored on macOS)
showWindowControls: '',
// custom padding (css format, i.e.: `top right bottom left`)
padding: '12px 14px',
// the full list. if you're going to provide the full color palette,
// including the 6 x 6 color cubes and the grayscale map, just provide
// an array here instead of a color map object
//F92672 <- pink
//10EFDC <- cyan
//AE81FF <- purple
//FEF283 <- yellow
// FBB885 <- orange
// 26C485 <- green
colors: {
black: '#000000',
red: '#F92672',
green: '#26C485',
yellow: '#FEF283',
blue: '#10EFDC',
magenta: '#AE81FF',
cyan: '#10EFDC',
white: '#FFFFFF',
lightBlack: '#808080',
lightRed: '#F92672',
lightGreen: '#26C485',
lightYellow: '#FEF283',
lightBlue: '#10EFDC',
lightMagenta: '#AE81FF',
lightCyan: '#10EFDC',
lightWhite: '#ffffff'
},
// the shell to run when spawning a new session (i.e. /usr/local/bin/fish)
// if left empty, your system's login shell will be used by default
shell: '',
// for setting shell arguments (i.e. for using interactive shellArgs: ['-i'])
// by default ['--login'] will be used
shellArgs: ['--login'],
// for environment variables
env: {},
// set to false for no bell
bell: 'SOUND',
// if true, selected text will automatically be copied to the clipboard
copyOnSelect: false
// URL to custom bell
// bellSoundURL: 'http://example.com/bell.mp3',
// for advanced config flags please refer to https://hyper.is/#cfg
},
// a list of plugins to fetch and install from npm
// format: [@org/]project[#version]
// examples:
// `hyperpower`
// `@company/project`
// `project#1.0.1`
plugins: [
`hypercwd`
],
// in development, you can create a directory under
// `~/.hyper_plugins/local/` and include it here
// to load it and avoid it being `npm install`ed
localPlugins: []
};
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=/Users/alexander.king/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="meteor"
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
# Uncomment the following line to use hyphen-insensitive completion. Case
# sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE="true"
# Uncomment the following line to disable bi-weekly auto-update checks.
# DISABLE_AUTO_UPDATE="true"
# Uncomment the following line to change how often to auto-update (in days).
# export UPDATE_ZSH_DAYS=13
# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"
# Uncomment the following line to disable auto-setting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"
# Uncomment the following line to display red dots whilst waiting for completion.
# COMPLETION_WAITING_DOTS="true"
# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"
# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# HIST_STAMPS="mm/dd/yyyy"
# Would you like to use another custom folder than $ZSH/custom?
# ZSH_CUSTOM=/path/to/new-custom-folder
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git)
source $ZSH/oh-my-zsh.sh
# User configuration
# export MANPATH="/usr/local/man:$MANPATH"
# You may need to manually set your language environment
# export LANG=en_US.UTF-8
# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
# export EDITOR='vim'
# else
# export EDITOR='mvim'
# fi
# Compilation flags
# export ARCHFLAGS="-arch x86_64"
# ssh
# export SSH_KEY_PATH="~/.ssh/rsa_id"
# Set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
# For a full list of active aliases, run `alias`.
#
# Example aliases
# alias ohmyzsh="nano ~/.oh-my-zsh"
alias zshconfig="nano ~/.zshrc"
alias chrome-ns="open -a Google\ Chrome --args --disable-web-security --user-data-dir"
alias c="clear"
alias rm="rm -i"
alias reload-t=". ~/.zshrc"
alias p="cd ~/Documents/"
alias sws="simplehttpserver"
alias killnode="killall -9 node"
goto() { cd ~/Documents/$1; }
_goto() { _files -W ~/Documents/ -/; }
compdef _goto goto
source ~/.zplug/init.zsh
bg-img() {
touch ~/.bg.png
cp $1 ~/.bg.png
feh --bg-center ~/.bg.png
}
alias fin="i3-msg exit"
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
set $mod Mod4
set $separator #38254A
set $background #38254A
set $statusline #38254A
# border bg color
set $focused_workspace #ffffff #ffffff #551a8b
set $active_workspace #551a8b #ffffff #551a8b
set $inactive_workspace #ffffff #ffffff #ffffff
set $urgent_workspace #551a8b #ffffff #551a8b
# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below.
font pango:monospace 8
# This font is widely installed, provides lots of unicode glyphs, right-to-left
# text rendering and scalability on retina/hidpi displays (thanks to pango).
#font pango:DejaVu Sans Mono 8
# Before i3 v4.8, we used to recommend this one as the default:
# font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
# The font above is very space-efficient, that is, it looks good, sharp and
# clear in small sizes. However, its unicode glyph coverage is limited, the old
# X core fonts rendering does not support right-to-left and this being a bitmap
# font, it doesn’t scale on retina/hidpi displays.
# Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod
# start a terminal
bindsym $mod+t exec hyper
# kill focused window
bindsym $mod+x kill
# start dmenu (a program launcher)
bindsym $mod+p exec dmenu_run
# There also is the (new) i3-dmenu-desktop which only displays applications
# shipping a .desktop file. It is a wrapper around dmenu, so you need that
# installed.
# bindsym $mod+d exec --no-startup-id i3-dmenu-desktop
# change focus
bindsym $mod+j focus left
bindsym $mod+k focus down
bindsym $mod+l focus up
bindsym $mod+semicolon focus right
# alternatively, you can use the cursor keys:
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right
# move focused window
bindsym $mod+Shift+j move left
bindsym $mod+Shift+k move down
bindsym $mod+Shift+l move up
bindsym $mod+Shift+semicolon move right
# alternatively, you can use the cursor keys:
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
# split in horizontal orientation
bindsym $mod+h split h
# split in vertical orientation
bindsym $mod+v split v
# enter fullscreen mode for the focused container
bindsym $mod+space fullscreen toggle
# change container layout (stacked, tabbed, toggle split)
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split
# toggle tiling / floating
bindsym $mod+Shift+space floating toggle
# change focus between tiling / floating windows
bindsym $mod+q focus mode_toggle
# focus the parent container
bindsym $mod+a focus parent
# focus the child container
#bindsym $mod+d focus child
# switch to workspace
bindsym $mod+1 workspace 1
bindsym $mod+2 workspace 2
bindsym $mod+3 workspace 3
bindsym $mod+4 workspace 4
bindsym $mod+5 workspace 5
bindsym $mod+6 workspace 6
bindsym $mod+7 workspace 7
bindsym $mod+8 workspace 8
bindsym $mod+9 workspace 9
bindsym $mod+0 workspace 10
# move focused container to workspace
bindsym $mod+Shift+1 move container to workspace 1
bindsym $mod+Shift+2 move container to workspace 2
bindsym $mod+Shift+3 move container to workspace 3
bindsym $mod+Shift+4 move container to workspace 4
bindsym $mod+Shift+5 move container to workspace 5
bindsym $mod+Shift+6 move container to workspace 6
bindsym $mod+Shift+7 move container to workspace 7
bindsym $mod+Shift+8 move container to workspace 8
bindsym $mod+Shift+9 move container to workspace 9
bindsym $mod+Shift+0 move container to workspace 10
# reload the configuration file
bindsym $mod+Shift+c reload
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
bindsym $mod+Shift+r restart
# exit i3 (logs you out of your X session)
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
# resize window (you can also use the mouse for that)
mode "resize" {
# These bindings trigger as soon as you enter the resize mode
# Pressing left will shrink the window’s width.
# Pressing right will grow the window’s width.
# Pressing up will shrink the window’s height.
# Pressing down will grow the window’s height.
bindsym j resizeJHL shrink width 10 px or 10 ppt
bindsym k resize grow height 10 px or 10 ppt
bindsym l resize shrink height 10 px or 10 ppt
bindsym semicolon resize grow width 10 px or 10 ppt
# same bindings, but for the arrow keys
bindsym Left resize shrink width 10 px or 10 ppt
bindsym Down resize grow height 10 px or 10 ppt
bindsym Up resize shrink height 10 px or 10 ppt
bindsym Right resize grow width 10 px or 10 ppt
# back to normal: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"
# Start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available)
bar {
status_command i3blocks
tray_output primary
}
#border[box] - background+border
client.focused #38254A #38254A #ffffff #38254A
client.focused_inactive #38254A #38254A #ffffff #484e50
client.unfocused #38254A #38254A #888888 #292d2e
client.urgent #2f343a #900000 #ffffff #900000
# run commands
exec feh --bg-scale ~/.bg.png
# i3blocks config file
#
# Please see man i3blocks for a complete reference!
# The man page is also hosted at http://vivien.github.io/i3blocks
#
# List of valid properties:
#
# align
# color
# background
# border
# command
# full_text
# instance
# interval
# label
# min_width
# name
# separator
# separator_block_width
# short_text
# signal
# urgent
# Global properties
#
# The top properties below are applied to every block, but can be overridden.
# Each block command defaults to the script name to avoid boilerplate.
command=$SCRIPT_DIR/$BLOCK_NAME
separator_block_width=15
markup=none
# Volume indicator
#
# The first parameter sets the step (and units to display)
# The second parameter overrides the mixer selection
# See the script for details.
[volume]
label=VOL
#label=♪
instance=Master
#instance=PCM
interval=once
signal=10
# Memory usage
#
# The type defaults to "mem" if the instance is not specified.
[memory]
label=MEM
separator=false
interval=30
[memory]
label=SWAP
instance=swap
separator=false
interval=30
# Disk usage
#
# The directory defaults to $HOME if the instance is not specified.
# The script may be called with a optional argument to set the alert
# (defaults to 10 for 10%).
[disk]
label=HOME
#instance=/mnt/data
interval=30
# Network interface monitoring
#
# If the instance is not specified, use the interface used for default route.
# The address can be forced to IPv4 or IPv6 with -4 or -6 switches.
[iface]
#instance=wlan0
color=#00FF00
interval=10
separator=false
[wifi]
#instance=wlp3s0
interval=10
separator=false
[bandwidth]
#instance=eth0
interval=5
# CPU usage
#
# The script may be called with -w and -c switches to specify thresholds,
# see the script for details.
[cpu_usage]
label=CPU
interval=10
min_width=CPU: 100.00%
#separator=false
#[load_average]
#interval=10
# Battery indicator
#
# The battery instance defaults to 0.
[battery]
label=BAT
#label=⚡
#instance=1
interval=30
# Date Time
#
[time]
command=date '+%Y-%m-%d %H:%M:%S'
interval=5
command=/usr/libexec/i3blocks/$BLOCK_NAME
full_text=
align=center
separator=false
separator_block_width=0
color=#0c0c0c
markup=pango
border_left=0
border_right=0
border_top=8
border_bottom=8
border=#012744
[focused window]
command=xtitle -s -r
interval=persist
color=#ffffff
border=#012744
border_right=3
[separator2]
full_text=<span background="#012744" foreground="#ea4c88"></span>
markup=pango
border=#012744
[weather]
instance=3647651
command=/usr/lib/i3blocks/weather
interval=60
color=#000000
markup=pango
border=#ea4c88
border_right=3
[separator1]
full_text=<span background="#ea4c88" foreground="#16649a"></span>
markup=pango
border=#ea4c88
[disk-home]
label=
command=/usr/lib/i3blocks/disk $HOME
instance=/home/virus69
interval=30
color=#fff7e9
markup=pango
border=#16649a
border_right=3
[separator2]
full_text=<span background="#16649a" foreground="#ffffff"></span>
markup=pango
border=#16649a
align=center
[cpu_usage]
label=☢
command=/usr/lib/i3blocks/cpu_usage
interval=10
color=#000000
markup=pango
border=#ffffff
border_right=3
[separator1]
full_text=<span background="#ffffff" foreground="#ea4c88"></span>
markup=pango
border=#ffffff
[temp]
label=
command=echo `sensors -A | grep -oP '^Core.+? \+\K\d+' | awk '{k+=$1}END{print k/NR}'` °C
interval=10
color=#000000
markup=pango
border=#ea4c88
border_right=3
[separator2]
full_text=<span background="#ea4c88" foreground="#16649a"></span>
markup=pango
border=#ea4c88
[wifi]
label=
command=/usr/lib/i3blocks/wifi
instance=wlan0
interval=10
color=#fff7e9
markup=pango
border=#16649a
border_right=3
[separator1]
full_text=<span background="#16649a" foreground="#ffffff"></span>
markup=pango
border=#16649a
[volume]
label=
command=/usr/lib/i3blocks/volume
instance=Master
interval=once
signal=10
border_right=3
color=#000000
border=#ffffff
[separator2]
full_text=<span background="#ffffff" foreground="#ea4c88"></span>
border=#ffffff
markup=pango
[time]
label=
command=date '+%I:%M %p'
interval=5
color=#000000
border=#ea4c88
border_right=3
markup=pango
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
set $mod Mod4
#Colors
set $white #ffffff
set $pink #F92672
set $cyan #10EFDC
set $purple #AE81FF
set $dark-purple #38254A
set $yellow #FEF283
set $orange #FBB885
set $green #26C485
# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below.
font pango:monospace 8
# This font is widely installed, provides lots of unicode glyphs, right-to-left
# text rendering and scalability on retina/hidpi displays (thanks to pango).
#font pango:DejaVu Sans Mono 8
# Before i3 v4.8, we used to recommend this one as the default:
# font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
# The font above is very space-efficient, that is, it looks good, sharp and
# clear in small sizes. However, its unicode glyph coverage is limited, the old
# X core fonts rendering does not support right-to-left and this being a bitmap
# font, it doesn’t scale on retina/hidpi displays.
# Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod
# start a terminal
bindsym $mod+t exec hyper
# kill focused window
bindsym $mod+x kill
# start dmenu (a program launcher)
bindsym $mod+p exec rofi -show run
# There also is the (new) i3-dmenu-desktop which only displays applications
# shipping a .desktop file. It is a wrapper around dmenu, so you need that
# installed.
# bindsym $mod+d exec --no-startup-id i3-dmenu-desktop
# change focus
bindsym $mod+j focus left
bindsym $mod+k focus down
bindsym $mod+l focus up
bindsym $mod+semicolon focus right
# alternatively, you can use the cursor keys:
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right
# move focused window
bindsym $mod+Shift+j move left
bindsym $mod+Shift+k move down
bindsym $mod+Shift+l move up
bindsym $mod+Shift+semicolon move right
# alternatively, you can use the cursor keys:
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
# split in horizontal orientation
bindsym $mod+h split h
# split in vertical orientation
bindsym $mod+v split v
# enter fullscreen mode for the focused container
bindsym $mod+space fullscreen toggle
# change container layout (stacked, tabbed, toggle split)
# bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split
# toggle tiling / floating
bindsym $mod+Shift+space floating toggle
# change focus between tiling / floating windows
bindsym $mod+q focus mode_toggle
# focus the parent container
bindsym $mod+a focus parent
# focus the child container
#bindsym $mod+d focus child
# switch to workspace
bindsym $mod+1 workspace 1
bindsym $mod+2 workspace 2
bindsym $mod+3 workspace 3
bindsym $mod+4 workspace 4
bindsym $mod+5 workspace 5
bindsym $mod+6 workspace 6
bindsym $mod+7 workspace 7
bindsym $mod+8 workspace 8
bindsym $mod+9 workspace 9
bindsym $mod+0 workspace 10
# move focused container to workspace
bindsym $mod+Shift+1 move container to workspace 1
bindsym $mod+Shift+2 move container to workspace 2
bindsym $mod+Shift+3 move container to workspace 3
bindsym $mod+Shift+4 move container to workspace 4
bindsym $mod+Shift+5 move container to workspace 5
bindsym $mod+Shift+6 move container to workspace 6
bindsym $mod+Shift+7 move container to workspace 7
bindsym $mod+Shift+8 move container to workspace 8
bindsym $mod+Shift+9 move container to workspace 9
bindsym $mod+Shift+0 move container to workspace 10
bindsym $mod+= exec 'scrot -e && mv $f /tmp/ && shotwell /tmp/$f'
# reload the configuration file
bindsym $mod+Shift+c reload
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
bindsym $mod+Shift+r restart
# exit i3 (logs you out of your X session)
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
# resize window (you can also use the mouse for that)
mode "resize" {
# These bindings trigger as soon as you enter the resize mode
# Pressing left will shrink the window’s width.
# Pressing right will grow the window’s width.
# Pressing up will shrink the window’s height.
# Pressing down will grow the window’s height.
# bindsym j resizeJHL shrink width 10 px or 10 ppt
# bindsym k resize grow height 10 px or 10 ppt
# bindsym l resize shrink height 10 px or 10 ppt
# bindsym semicolon resize grow width 10 px or 10 ppt
# same bindings, but for the arrow keys
bindsym Left resize shrink width 10 px or 10 ppt
bindsym Down resize grow height 10 px or 10 ppt
bindsym Up resize shrink height 10 px or 10 ppt
bindsym Right resize grow width 10 px or 10 ppt
# back to normal: Enter or Escap
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"
# Start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available)
bar {
status_command i3blocks
tray_output primary
colors {
separator #AAAAAA
background #ffffff
statusline #000000
focused_workspace #ffffff #10EFDC #10EFDC
active_workspace #ffffff #10EFDC #ffffff
inactive_workspace #ffffff #ffffff #ffffff
urgent_workspace #ffffff #ffffff #FFFFFF
}
}
#Colors
# class border backgr. text indicator child_border
# gaps inner 0
# gaps outer 0
# run commands
exec feh --bg-scale ~/.bg.png
exec xrandr --dpi 220
# exec xrandr --scale 2x2
exec i3-msg restart
exec compton
client.focused #ffffff #F92672 #ffffff #ffffff
client.focused_inactive #ffffff #F92672 #ffffff #ffffff
client.unfocused #ffffff #ffffff #F92672 #ffffff
client.urgent #ffffff #ffffff #F92672 #ffffff
# i3status configuration file.
# see "man i3status" for documentation.
# It is important that this file is edited as UTF-8.
# The following line should contain a sharp s:
# ß
# If the above line is not correctly displayed, fix your editor first!
general {
colors = true
interval = 5
color_good = "#BBBBBB"
color_bad = "#CC1616"
color_degraded = "#55858E"
}
order += "volume master"
# order += "ipv6"
order += "cpu_usage"
order += "cpu_temperature 0"
order += "disk /"
# order += "run_watch DHCP"
# order += "run_watch VPN"
order += "wireless _first_"
order += "ethernet _first_"
order += "battery 0"
order += "tztime local"
volume master {
device = "default"
mixer = "Master"
mixer_idx = 0
format = "VOL: %volume "
format_muted = " muted (%volume)"
}
wireless _first_ {
format_up = " %essid(%quality)"
format_down = " : "
}
ethernet _first_ {
# if you use %speed, i3status requires root privileges
format_up = "E: %ip (%speed)"
format_down = "E: "
}
battery 0 {
format = " %remaining"
format_down = "No battery"
}
# run_watch DHCP {
# pidfile = "/var/run/dhclient*.pid"
# }
# run_watch VPN {
# pidfile = "/var/run/vpnc/pid"
# }
tztime local {
format = " %Y-%m-%d %H:%M:%S"
}
load {
# format = " %1min"
format = " %1min, %5min, %15min"
}
disk "/" {
format = "%avail/ %total"
}
cpu_usage {
format = " CPU : %usage"
}
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
" Plugin 'L9'
" Git plugin not hosted on GitHub
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'git://git.wincent.com/command-t.git'
Plugin 'tpope/vim-rhubarb'
Plugin 'flazz/vim-colorschemes'
" Plugin 'Mizuchi/vim-ranger'
Plugin 'francoiscabrol/ranger.vim'
" git repos on your local machine (i.e. when working on your own plugin)
" Plugin 'file:///home/gmarik/path/to/plugin'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Install L9 and avoid a Naming conflict if you've already installed a
" different version somewhere else.
" Plugin 'ascenator/L9', {'name': 'newL9'}
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on
"--------
" Looks
" -------
colorscheme heroku
syntax enable
set background=dark
set t_Co=256
" let g:airline_theme = 'heroku'
" -------------------------------------
" " File & backup settings
" " -------------------------------------
"
" set nobackup
" set nowb
set noswapfile
# Meteor.zsh-theme
# color vars
#F92672 <- pink
#10EFDC <- cyan
#AE81FF <- purple
#FEF283 <- yellow
#FBB885 <- orange
#26C485 <- green
# eval my_purple = '$FG[135]'
# eval my_dark_purple = '$FG[090]'
# eval my_pink = '$FG[089]'
# eval my_cyan = '$FG[087]'
# eval my_yellow = '$FG[003]'
# eval my_orange = '$FG[216]'
# eval my_green = '$FG[047]'
if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi
local return_code="%(?..%{$fg[135]%}%? ↵%{$reset_color%})"
# primary prompt
PROMPT='$FG[087][%~\
]$(git_prompt_info) \
$FG[003]%(!.#.»)%{$reset_color%} '
PROMPT2='%{$FG[047]%}\ %{$reset_color%}'
RPS1='${return_code}'
# right prompt
if type "virtualenv_prompt_info" > /dev/null
then
RPROMPT='$(virtualenv_prompt_info)$FG[013]%n@%m%{$reset_color%}%'
else
RPROMPT='$FG[013]%n@%m%{$reset_color%}%'
fi
# git settings
ZSH_THEME_GIT_PROMPT_PREFIX="$FG[003]@$FG[003]"
ZSH_THEME_GIT_PROMPT_CLEAN=""
ZSH_THEME_GIT_PROMPT_DIRTY="$FG[003]*%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="$FG[003]%{$reset_color%}"
! ------------------------------------------------------------------------------
! ROFI Color theme
! ------------------------------------------------------------------------------
rofi.color-enabled: true
rofi.color-window: #22172d, #ae81ff, argb:a8ae81ff
rofi.color-normal: #22172d, #ffffff, #22172d, #ae81ff, #ffffff
rofi.color-active: #10efdc, #ffffff, #10efdc, #10efdc, #ffffff
rofi.color-urgent: #f92672, #ffffff, #f92672, #f92672, #ffffff
@stagfoo

stagfoo commented Aug 10, 2017

Copy link
Copy Markdown
Author

Wallpaper

wallhaven-298020
wallhaven-466368
wallhaven-473369
Uploading wallhaven-477163.jpg…
wallhaven-489113
Uploading wallhaven-489967.jpg…

@stagfoo

stagfoo commented Aug 10, 2017

Copy link
Copy Markdown
Author

wallhaven-501403
wallhaven-513826
wallhaven-527219
wallhaven-544246
firewatch-night-widescreen-wallpaper-59155-60939-hd-wallpapers

@stagfoo

stagfoo commented Aug 11, 2017

Copy link
Copy Markdown
Author
  • hyper-search
  • hypergoogle
  • hpm-cli
  • hyperborder
  • hyperterm-tab-icons
  • hyper-dark-scrollbar
  • gitrocket

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment