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
""" release autogroup in MyAutoCmd | |
augroup MyAutoCmd | |
autocmd! | |
augroup END | |
""" 表示関係 | |
set t_Co=256 | |
set background=dark | |
colorscheme hybrid | |
syntax on |
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
# 日本語を使用 | |
export LANG=ja_JP.UTF-8 | |
# パスを追加したい場合 | |
export PATH="$HOME/bin:$PATH" | |
# 色を使用 | |
autoload -Uz colors | |
colors |
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
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-versions" | |
tap "homebrew/core" | |
tap "homebrew/services" | |
brew "glib" | |
brew "python@3.8" | |
brew "direnv" | |
brew "node" | |
brew "fx" |
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
# coding: utf-8 | |
import datarobot as dr | |
import pandas as pd | |
import numpy as np | |
from pathlib import Path | |
home = str(Path.home()) | |
config_path = home + '.config/datarobot/drconfig.yaml' |