- Theme = Numix
- Fonts
- Roboto + Roboto Thin
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<KB75> | |
<PredefinedCombo> | |
<List SizeOfView="6" ViewStartAt="0" CursorPos="0" Cycles="1" IsAutoInterval="0" Delay="30" PlayMode="0"/> | |
</PredefinedCombo> | |
<PredefinedMacro> | |
<List SizeOfView="9" ViewStartAt="0" CursorPos="0" Cycles="1" IsAutoInterval="0" Delay="30" PlayMode="0"/> | |
</PredefinedMacro> | |
<PredefinedEmu> | |
<List SizeOfView="9" ViewStartAt="0" CursorPos="0" Cycles="1" IsAutoInterval="0" Delay="30" PlayMode="0"/> |
This file contains hidden or 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 | |
set number | |
set title | |
set ruler | |
set autoindent | |
set smartindent | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set backspace=indent,eol,start |
This file contains hidden or 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
# Insert your preferred key mappings here. | |
unmap H | |
unmap J | |
unmap K | |
unmap L | |
map H previousTab | |
map L nextTab | |
map J goBack | |
map K goForward |
This file contains hidden or 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
[distutils] | |
index-servers = | |
pypi | |
testpypi | |
[pypi] | |
username: xxxxxxxx | |
password: xxxxxxxx | |
[testpypi] |
This file contains hidden or 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 -ue -o | |
APP_ID="clion" | |
APP_NAME="CLion" | |
APP_VER="2017.3.4" | |
APP_DIR="/home/sueda/jetbrains" | |
sudo bash -c "cat > /usr/share/applications/${APP_ID}.desktop" <<EOF | |
[Desktop Entry] | |
Version=${APP_VER} |
This file contains hidden or 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
# Put this file in subdirectory "pndcat" | |
pndcat = 'は?' | |
print(pndcat) |
This file contains hidden or 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
eval "$(pyenv init -)" | |
# Color Diff | |
if [[ -x `which colordiff` ]]; then | |
alias diff='colordiff -u' | |
else | |
alias diff='diff -u' | |
fi | |
export LESS='-R' |
This file contains hidden or 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
#include <stdio.h> | |
#include <sys/sockio.h> | |
#include <net/if.h> | |
int main() { | |
printf("%lx", SIOCIFGCLONERS); | |
return 0; | |
} |