This file contains 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
if [[ -v MYVIMRC ]] && type nvr &> /dev/null; then | |
alias nvim='nvr --remote-silent' | |
fi |
This file contains 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
diff --git index.js index.js | |
index 9fc06ec..68e81c4 100644 | |
--- index.js | |
+++ index.js | |
@@ -74,10 +74,8 @@ const getCombConfig = () => { | |
let config; | |
- if (configureWithJSON()) { | |
- if (fs.existsSync(configPath)) { |
This file contains 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
diff --git lib/open-vim.coffee lib/open-vim.coffee | |
index dc44209..bf41ad8 100644 | |
--- lib/open-vim.coffee | |
+++ lib/open-vim.coffee | |
@@ -4,6 +4,7 @@ OS = require 'os' | |
module.exports = | |
activate: (state) -> | |
+ process.env.PATH += ":/usr/local/bin" | |
vimType = if OS.platform() is "darwin" then "mvim" else "gvim" |
This file contains 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
// resources/assets/sass/app.scss | |
@charset 'UTF-8'; | |
// Bootstrap | |
@import 'bootstrap/variables'; | |
@import 'node_modules/bootstrap-sass/assets/stylesheets/bootstrap'; | |
// Font Awesome | |
@import 'font-awesome/variables'; |
This file contains 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
git log --oneline --decorate --no-color \ | |
| anyframe-selector-auto \ | |
| awk '{print $1 "^"}' \ | |
| anyframe-action-execute git rebase -i |
This file contains 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
--- lib/linter-eslint.coffee | |
+++ lib/linter-eslint.coffee | |
@@ -71,6 +71,9 @@ class LinterESLint extends Linter | |
if @localEslint | |
options.plugins = config.plugins | |
engine = new CLIEngine(options) | |
+ config.plugins.forEach (key) -> | |
+ plugin = require(resolve("eslint-plugin-#{key}", {basedir: path.dirname(origPath)})) | |
+ engine.addPlugin(key, plugin) | |
else |
This file contains 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
execute 'task1' do | |
command 'echo "task1"' | |
notifies :run, 'execute[task2]', :delayed | |
end | |
execute 'task2' do | |
command 'echo "task2"' | |
notifies :run, 'execute[task3]', :delayed | |
action :nothing | |
end |
This file contains 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
execute 'task1' do | |
command 'echo "task1"' | |
notifies :run, 'execute[task2]', :immediately | |
end | |
execute 'task2' do | |
command 'echo "task2"' | |
notifies :run, 'execute[task3]', :immediately | |
action :nothing | |
end |
This file contains 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
<?php namespace App\Providers; | |
use Illuminate\Support\ServiceProvider; | |
class ConfigServiceProvider extends ServiceProvider | |
{ | |
/** | |
* Overwrite any vendor / package configuration. | |
* | |
* This service provider is intended to provide a convenient location for you |
This file contains 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"?> | |
<project version="4"> | |
<component name="ProjectCodeStyleSettingsManager"> | |
<option name="PER_PROJECT_SETTINGS"> | |
<value> | |
<PHPCodeStyleSettings> | |
<option name="ALIGN_KEY_VALUE_PAIRS" value="true" /> | |
<option name="ALIGN_PHPDOC_PARAM_NAMES" value="true" /> | |
<option name="ALIGN_PHPDOC_COMMENTS" value="true" /> | |
<option name="ALIGN_ASSIGNMENTS" value="true" /> |
NewerOlder