This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# remove what's there | |
rm source/_posts/*.md | |
# download blogs | |
node_modules/.bin/hexo migrate blogger 'http://blog.meredrica.org/feeds/posts/default?alt=json&max-results=10000' | |
node_modules/.bin/hexo migrate blogger 'http://jujitsu.westreicher.org/feeds/posts/default?alt=json&max-results=10000' | |
# fix image links generated by migrate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#.config/lilyterm/default.conf | |
[main] | |
# Auto save settings when closing window. | |
auto_save = 0 | |
# The version of this profile's format. DO NOT EDIT IT! | |
version = 0.9.9 | |
# The default font name of vte terminal. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Standard awesome library | |
local gears = require("gears") | |
local awful = require("awful") | |
require("awful.autofocus") | |
-- Widget and layout library | |
local wibox = require("wibox") | |
-- Theme handling library | |
local beautiful = require("beautiful") | |
-- Notification library | |
local naughty = require("naughty") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setopt PROMPT_SUBST | |
autoload -U colors | |
colors | |
# set up colors | |
# user color | |
if [ $UID -eq 0 ]; then user_color="red"; else user_color="magenta"; fi | |
# ssh color | |
if [[ -n "$SSH_CLIENT" || -n "$SSH2_CLIENT" ]]; then ssh_color="yellow"; else ssh_color="green"; fi | |
# git symbol color | |
local git_symbol_color="cyan" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAtaAffwfWaUPaWDD8+uOtDJpqa7YEuKux9600cMIiggJOBYtWYZm/WeonAkgdjefsAVt+MyETXiCnLhK7DsYFGcZVEPIBepM4zc0eoGhF3HQU+peLZtTr83NnNvxjHr6lDdQWPm0/N4wwLZ/VKp7AjGT3V/9bCFacg7N471tmM2JOl34y3o2hmLruBJW9NgMGLswv4iMWVPMclrGuRw6PKBefZ0rktgmf1qUhZYzson1lw6+Is3VH0sXUyNDZ0CWJwOilc6FYTH6X59ALgduEdK257pQbSbY/V/ovmDrofIxJXOyTqwGlzAtcmuO2fYpPJOQpsDhQL4Z7Ns7YBiK9Tw== [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
map j 10j | |
map k 10k |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible " running vim not vi | |
" TODO: have a look at these crazy things: | |
" | |
" Source the vimrc file after saving it. This way, you don't have to | |
"reload Vim to see the changes. | |
"if has("autocmd") | |
" augroup myvimrchooks | |
" au! | |
" autocmd bufwritepost .vimrc source ~/.vimrc | |
" augroup END |