Skip to content

Instantly share code, notes, and snippets.

// This shows a full config file!
module.exports = function (grunt) {
grunt.initConfig({
browserSync: {
dev: {
bsFiles: {
src : [
'css/*.css',
'*.html'
Fri May 25 19:04:21 UTC 2018
@AlanWarren
AlanWarren / vim
Created September 4, 2019 13:18
" 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'
#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
-- 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',