{"id":18839214,"url":"https://github.com/solareenlo/42myvimrc","last_synced_at":"2026-03-19T06:40:48.042Z","repository":{"id":93865677,"uuid":"370591379","full_name":"solareenlo/42myvimrc","owner":"solareenlo","description":".myvimrc for 42","archived":false,"fork":false,"pushed_at":"2021-10-18T13:35:00.000Z","size":42,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-12-30T09:16:03.580Z","etag":null,"topics":["42","ccls","vimrc","zshrc"],"latest_commit_sha":null,"homepage":"","language":"Vim script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/solareenlo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-25T06:41:59.000Z","updated_at":"2022-09-06T23:36:47.000Z","dependencies_parsed_at":"2023-03-08T12:45:37.780Z","dependency_job_id":null,"html_url":"https://github.com/solareenlo/42myvimrc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solareenlo%2F42myvimrc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solareenlo%2F42myvimrc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solareenlo%2F42myvimrc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solareenlo%2F42myvimrc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/solareenlo","download_url":"https://codeload.github.com/solareenlo/42myvimrc/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239774333,"owners_count":19694700,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["42","ccls","vimrc","zshrc"],"created_at":"2024-11-08T02:42:11.722Z","updated_at":"2026-01-24T08:04:47.956Z","avatar_url":"https://github.com/solareenlo.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 42myvimrc\n\n## Usage\n- 以下のスクリプトを順次実行していく．\n```shell\n# キーリピートを設定する\ndefaults write -g InitialKeyRepeat -int 15\ndefaults write -g KeyRepeat -int 2\n\n# ターミナル用に solarized をインストールする\ncd \u0026\u0026 mkdir github \u0026\u0026 cd github\ngit clone https://github.com/tomislav/osx-terminal.app-colors-solarized solarized.git\n# そして，ターミナルの設定から solarized を選択する\n\n# goinfre へ brew をインストールする\nmkdir -p /goinfre/$USER/homebrew \u0026\u0026 curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C /goinfre/$USER/homebrew\necho 'PATH=\"/goinfre/$USER/homebrew/bin:$PATH\"' \u003e\u003e $HOME/.zshrc\n\n# 日本とのプログラミング用フォント Cica fonts をインストールする\ncd /tmp\ncurl -L -O https://github.com/miiton/Cica/releases/download/v5.0.2/Cica_v5.0.2_with_emoji.zip\nunzip Cica_v5.0.2_with_emoji.zip\n## Mac\nmv *.ttf /Users/$USER/Library/Fonts/\n## そして，ターミナルの設定から Cica fonts を選択する\n## Ubuntu\nsudo mkdir  /usr/share/fonts/truetype/cica\nsudo mv *.ttf /usr/share/fonts/truetype/cica/\nsudo fc-cache -vf\ngsettings get org.gnome.Terminal.ProfilesList list\ngsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:b1dcc9dd-5262-4d8d-a863-c897e6d979b9/ font \"Cica 12\"\n\n# vim をインストールする\nbrew install vim\n# vim で solarized の色がきちんと出るようにする\nbash ~/.cache/dein/repos/github.com/lifepillar/vim-solarized8/scripts/solarized8.sh\n\n# git, tig, ccls, tmux, clang-format をインストールする\nbrew install git tig ccls tmux clang-format\n\n# 予めある tmux の設定ファイルをインストールする\ncd\ncurl -O https://raw.githubusercontent.com/solareenlo/dotfiles/main/tmux/.tmux.conf\n\n# ファイル検索，ファイル内の単語検索ツールをインストールする\nbrew install fzf bat ripgrep\n$(brew --prefix)/opt/fzf/install\necho \"alias fzf='fzf --preview \\\"bat  --color=always --style=header,grid --line-range :100 {}\\\"'\" \u003e\u003e ~/.zshrc\n\n# zsh でハイライトと単語補完するツールをインストールする\nbrew install zsh-syntax-highlighting zsh-autosuggestions\necho \"source /goinfre/$USER/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh\" \u003e\u003e ~/.zshrc\n\n# norminette をバージョンアップさせる\n/usr/local/bin/python3 -m pip install --upgrade pip\necho 'PATH=/Users/$USER/Library/Python/3.9/bin:$PATH' \u003e\u003e $HOME/.zshrc\npython3 -m pip install --upgrade norminette\nexec $SHELL -l\n\n# C++ 用のリントをインストールする\npip install cpplint\n\n# deoplete (vim 上で単語保管するプラグイン)に必要\npip3 install --user pynvim\necho \"let g:python3_host_prog=\\\"$(which python3)\\\"\" \u003e\u003e .vimrc\n\n# 予めある .vimrc をダウンロードする\ncurl https://raw.githubusercontent.com/solareenlo/42myvimrc/main/.vimrc -o ~/.vimrc\n\n# dein をインストールする\ncurl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh \u003e installer.sh\nsh ./installer.sh ~/.cache/dein\n\n# dein を使って vim のプラグインをインストールする\nvim ~/.vimrc\n:call dein#install()\n:call dein#update()\n\n# zinit をインストールする\nsh -c \"$(curl -fsSL https://raw.githubusercontent.com/zdharma/zinit/master/doc/install.sh)\"\n```\n\n- C++ を書くときは，当該ディレクトリで以下を実行する．\n```shell\n# ccls へ標準ライブラリのパスを指定してあげる\ncurl -O https://raw.githubusercontent.com/solareenlo/42myvimrc/main/.ccls\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolareenlo%2F42myvimrc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsolareenlo%2F42myvimrc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolareenlo%2F42myvimrc/lists"}