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"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>BackgroundColor</key> | |
| <data> | |
| YnBsaXN0MDDUAQIDBAUGBwpYJHZlcnNpb25ZJGFyY2hpdmVyVCR0b3BYJG9iamVjdHMS | |
| AAGGoF8QD05TS2V5ZWRBcmNoaXZlctEICVRyb290gAGjCwwTVSRudWxs0w0ODxARElVO | |
| U1JHQlxOU0NvbG9yU3BhY2VWJGNsYXNzTxAaMC44NzUgMC44NTc5ODM2NSAwLjc2NTYy | |
| NQAQAoAC0hQVFhdaJGNsYXNzbmFtZVgkY2xhc3Nlc1dOU0NvbG9yohYYWE5TT2JqZWN0 |
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
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
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
| //Counter-Strike: Global Offensive Settings | |
| //Users/niwa/Library/Application Support/Steam/steamapps/common/Counter-Strike Global Offensive/csgo/cfg/autoexec.cfg | |
| //参考: https://gist.github.com/aominn/16a3aff2d25218efaf90165486894f7f | |
| //------------------------------------------------------------------------------------------------------------------------------------- | |
| //Keyboard/Mouse | |
| //------------------------------------------------------------------------------------------------------------------------------------- | |
| //<Keyboard & Mouse Settings> | |
| m_pitch "0.022" //マウス反転 {Off:"0.022"/On:"-0.022"(default:"0.022")} | |
| option_duck_method "1" //しゃがむモード {長押し:"0"/切り替え:"1" (default:"0")} changed |
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
| # 256色端末を使用する | |
| set -g default-terminal "screen-256color" | |
| set -g terminal-overrides 'xterm:colors=256' | |
| # ウィンドウとペインの番号を1から開始 | |
| set -g base-index 1 | |
| setw -g pane-base-index 1 | |
| # ウィンドウを閉じた時に番号を詰める | |
| set-option -g renumber-windows 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
| """"""""""""""""""""" | |
| " 基本設定 | |
| """"""""""""""""""""" | |
| set title " ウインドウのタイトルバーにファイルのパス情報等を表示する | |
| set number " 行番号を表示 | |
| set cursorline " 現在の行を強調表示 | |
| "set cursorcolumn " 現在の行を強調表示(縦) | |
| set showmatch " 括弧入力時の対応する括弧を表示 | |
| set visualbell " ビープ音を可視化 | |
| set laststatus=2 " ステータスラインを常に表示 |