SPC q q- quitSPC w /- split window verticallySPC w- - split window horizontallySPC 1- switch to window 1SPC 2- switch to window 2SPC w c- delete current windowSPC TAB- switch to previous bufferSPC b b- switch buffers
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
| Style/FrozenStringLiteralComment: | |
| Enabled: false | |
| Style/NumericLiterals: | |
| Enabled: false | |
| Layout/EmptyLineAfterGuardClause: | |
| Enabled: false | |
| Bundler/OrderedGems: |
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
| #![allow(unused_variables)] | |
| #![allow(dead_code)] | |
| use std::fmt::{Display, Formatter, Result}; | |
| struct ImportantExcerpt<'a> { | |
| part: &'a str, | |
| } | |
| impl<'b> std::fmt::Display for ImportantExcerpt<'b> { |
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
| #!/usr/bin/perl | |
| # Emacs starter for Emacs mac port | |
| # Thanks to Aquamacs Project and David Reitter | |
| my $args = ""; | |
| my $tmpfiles = ""; | |
| for my $f (@ARGV) { |
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
| gulp = require('gulp') | |
| browserSync = require('browser-sync') | |
| gulp.task 'browser-sync', ['webpack:dev-server'], -> | |
| browserSync( | |
| proxy: "localhost:8081" | |
| port: 8080 | |
| ) | |
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
| task :test do | |
| $:.unshift('lib', 'spec') | |
| Dir.glob('./spec/**/*_spec.rb') { |f| require f } | |
| Dir.glob('./lib/**/*.rb') { |f| require f } | |
| end |
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
| class App | |
| constructor: (@body) -> | |
| # site global setup | |
| start: -> | |
| controllerName = @body.data('js_controller') | |
| Controller = App[controllerName] | |
| if Controller | |
| @main = new Controller |
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
| data:text/html, <body contenteditable style="font-size:2rem;color:hsl(0,0%,75%);background:hsl(0,0%,19%);line-height:1.4;max-width:60rem;margin:0 auto;padding:4rem;"> |
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
| # Gemfile | |
| gem 'redis', '~> 3.0.1' |
NewerOlder