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
| Packages starred by you (49) | |
| ├── ⭐ atom-alignment A simple key-binding for aligning multi-line and multiple selections in Atom (Based on the sublime text plugin) (49549 downloads, 441 stars) | |
| ├── ⭐ atom-beautify Beautify HTML, CSS, JavaScript, PHP, Python, Ruby, Java, C, C++, C#, Objective-C, CoffeeScript, TypeScript, Coldfusion, SQL, and more in Atom (2728164 downloads, 3799 stars) | |
| ├── ⭐ atom-fuzzy-grep Fuzzy grep project using ag, pt, ack, grep, ripgrep, or git-grep (11002 downloads, 67 stars) | |
| ├── ⭐ atom-material-ui A dark UI theme for Atom that follows Google's Material Design Guidelines (898284 downloads, 1174 stars) | |
| ├── ⭐ atom-ternjs JavaScript code intelligence for atom with Tern. Adds support for ES5, ES6 (JavaScript 2015), Node.js, jQuery & Angular. Extendable via plugins. Uses suggestion provider by autocomplete-plus. (338277 downloads, 697 stars) | |
| ├── ⭐ autocomplete-js-import Autocompletes commonjs and es6 import statements (17170 downloads, 30 stars) | |
| ├── ⭐ autocomplete-paths Adds path autocomp |
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
| ".vimrc" 667L, 19072C | |
| [denite] Traceback (most recent call last): | |
| [denite] File "/Users/hoge/dotfiles/.vim/plugged/denite.nvim/rplugin/python3/denite/ui/default.py", line 63, in start | |
| [denite] self.input_loop() | |
| [denite] File "/Users/hoge/dotfiles/.vim/plugged/denite.nvim/rplugin/python3/denite/ui/default.py", line 224, in input_loop | |
| [denite] ret = func() if len(map_args) == 1 else func(arg) | |
| [denite] File "/Users/hoge/dotfiles/.vim/plugged/denite.nvim/rplugin/python3/denite/ui/default.py", line 326, in leave_mode | |
| [denite] return self.quit() | |
| [denite] File "/Users/hoge/dotfiles/.vim/plugged/denite.nvim/rplugin/python3/denite/ui/default.py", line 240, in quit | |
| [denite] self.quit_buffer() |
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
| [[plugins]] | |
| repo = 'junegunn/fzf' | |
| build = './install --all' | |
| merged = 0 | |
| [[plugins]] | |
| repo = 'junegunn/fzf.vim' | |
| depends = 'fzf' | |
| hook_add = ''' | |
| nmap <C-p> :FZF<CR> |
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
| import path from 'path'; | |
| import webpack from 'webpack'; | |
| import ExtractTextPlugin from 'extract-text-webpack-plugin'; | |
| const production = process.env.TARGET === 'production'; | |
| const devtool = production ? '' : 'inline-source-map'; | |
| const defaultPlugins = [ | |
| new webpack.ProvidePlugin({ | |
| $: 'jquery', |
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
| Plug 'Shougo/unite.vim' | |
| Plug 'osyo-manga/unite-quickfix' | |
| " quickfix | |
| call unite#custom_source('quickfix', 'sorters', 'sorter_reverse') | |
| call unite#custom_source('location_list', 'sorters', 'sorter_reverse') | |
| nnoremap <silent> <Leader>q :Unite quickfix -direction=botright -no-quit<CR> | |
| nnoremap <silent> <Leader>l :Unite location_list -direction=botright -no-quit<CR> |
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
| FROM ubuntu:trusty | |
| RUN echo "Asia/Tokyo" > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata | |
| RUN apt-get update && apt-get install -y locales | |
| RUN echo ja_JP.UTF-8 UTF-8 >> /etc/locale.gen && locale-gen && update-locale LANG=ja_JP.UTF-8 LANGUAGE="ja_JP:ja" | |
| ENV LANG ja_JP.UTF-8 |
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
| # Dockerfile.node_development | |
| FROM node:6.3 | |
| ARG APP_HOME | |
| RUN mkdir -p $APP_HOME | |
| WORKDIR $APP_HOME | |
| ADD package.json $APP_HOME/ | |
| RUN npm cache clean && npm i |
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
| # Dockerfile.rails_development | |
| FROM ruby:2.3.1 | |
| RUN ln -snf /bin/bash /bin/sh | |
| RUN apt-get update && \ | |
| apt-get install -y mysql-client nodejs --no-install-recommends && \ | |
| rm -rf /var/lib/apt/lists/* | |
| ARG APP_HOME |
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
| version: '2' | |
| services: | |
| web: &app_base | |
| build: | |
| context: . | |
| dockerfile: Dockerfile.rails_development | |
| args: | |
| - APP_HOME=${PWD} | |
| ports: | |
| - "3000:3000" |
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
| source 'https://rubygems.org' | |
| ruby '2.3.1' | |
| gem 'rails', '~> 5.0.0' | |
| gem 'active_link_to' | |
| gem 'active_model_serializers' | |
| gem 'activemodel-serializers-xml' | |
| gem 'aws-sdk' | |
| gem 'bootstrap_form' |