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
-- NOTE: go to vscode-js-debug and npm install --legacy-peer-deps | |
-- && npx gulp vsDebugServerBundle && mv dist out | |
require("dap-vscode-js").setup({ | |
debugger_path = "/Users/example/dev/build/vscode-js-debug", -- Path to vscode-js-debug installation. | |
adapters = { 'pwa-node', 'pwa-chrome', 'pwa-msedge', 'node-terminal', 'pwa-extensionHost' }, -- which adapters to register in nvim-dap | |
}) | |
for _, language in ipairs({ "typescript", "typescriptreact", "javascript", "javascriptreact" }) do | |
require("dap").configurations[language] = { | |
{ | |
name = 'Node - Launch', |
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
#setup truecolor | |
set-option -ga terminal-overrides ',xterm*:Tc:sitm=\E[3m' | |
set -g base-index 1 | |
set -g focus-events on | |
#Automatically set window title | |
#set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
set-option -g set-titles-string " " | |
set-option -g default-shell /usr/local/bin/zsh |
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
" snippets | |
Plug 'SirVer/ultisnips' | |
Plug 'atefth/ruby-on-rails-snippets-vs-code' | |
Plug 'abusaidm/html-snippets' | |
Plug 'wvffle/vimterm' | |
Plug 'mtdl9/vim-log-highlighting' | |
Plug 'vim-ruby/vim-ruby' | |
Plug 'joker1007/vim-ruby-heredoc-syntax' | |
Plug 'chase/vim-ansible-yaml' |
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
Fri May 25 19:04:21 UTC 2018 |
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
// This shows a full config file! | |
module.exports = function (grunt) { | |
grunt.initConfig({ | |
browserSync: { | |
dev: { | |
bsFiles: { | |
src : [ | |
'css/*.css', | |
'*.html' |