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
/* CSS addon for TweetDeckPlayer by gaeulbyul */ | |
/* This fills small gap between RT/fav icon and counter */ | |
span.pull-right.icon-favorite-toggle.margin-l--2.margin-t--1.txt-size--12.js-like-count.like-count { | |
margin-left: 0px !important; | |
padding-left: 2px !important; | |
} | |
span.pull-right.icon-retweet-toggle.margin-l--3.margin-t--1.txt-size--12.js-retweet-count.retweet-count { | |
margin-left: 0px !important; |
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
if [ "$TERM" = "linux" ]; then | |
echo -en "\e]P02D3139" #black | |
echo -en "\e]P87F848E" #darkgrey | |
echo -en "\e]P1F44747" #darkred | |
echo -en "\e]P9E06C75" #red | |
echo -en "\e]P298C379" #darkgreen | |
echo -en "\e]PA98C379" #green | |
echo -en "\e]P3E5C07B" #brown | |
echo -en "\e]PBE5C07B" #yellow | |
echo -en "\e]P4528BFF" #darkblue |
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
{ | |
"title": "Keymaps by hatoba29", | |
"rules": [ | |
{ | |
"description": "Change input method between KOR/JPN/ENG", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"description": "change eng to kor", | |
"from": { |
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
!! one dark pro | |
! special | |
*.foreground: #c8c8c8 | |
*.background: #282c34 | |
*.cursorColor: #c8c8c8 | |
! black | |
*.color0: #2d3139 | |
*.color8: #7f848e |
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
[colors] | |
red = #f92a72 | |
green = #a6e22e | |
orange = #fd971f | |
purple = #ae81ff | |
blue = #66d9ef | |
background = #222222 | |
foreground = #cfcfcf |
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
# i3 config file (v4) | |
# Set modkey as Mod4(Super) | |
set $mod Mod4 | |
# Font for window titles. Will also be used by the bar unless a different font | |
# is used in the bar {} block below. | |
font fixed | |
# Use pactl to adjust volume in PulseAudio. |
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
/* | |
* ROFI One Dark | |
* | |
* Based on OneDark.vim (https://github.com/joshdick/onedark.vim) | |
* | |
* Author: Benjamin Stauss | |
* User: me-benni | |
* Edit: hatoba29 | |
* | |
*/ |
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
""" | |
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \ | |
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' | |
""" | |
call plug#begin('~/.vim/plugged') | |
Plug 'joshdick/onedark.vim' | |
Plug 'sheerun/vim-polyglot' | |
Plug 'itchyny/lightline.vim' |