Skip to content

Instantly share code, notes, and snippets.

View jimblue's full-sized avatar
🎯
Focusing

Jim Blue jimblue

🎯
Focusing
View GitHub Profile
@jimblue
jimblue / 00-ssh-tmux-iterm.md
Created March 20, 2021 23:43 — forked from lukasnellen/00-ssh-tmux-iterm.md
Summary of my remote tmux and ssh configuration to benefit from the iterm2-tmux integration, with ssh authentication socket refreshing

Configuration to use remote tmux over ssh in iterm

This is a compilation of information I found in different postings on the net.

All manual invocation

Basic remote tmux session

tmux can be invoked in command mode using tmux -CC. The simplest way to get a remote tmux session into a window of iterm is to invoke it on the remote host

@jimblue
jimblue / webpack.config.js
Created August 31, 2020 20:09
webpack.config.js
const path = require('path')
const { loader: MiniCssExtractLoader } = require('mini-css-extract-plugin')
const { HotModuleReplacementPlugin, SourceMapDevToolPlugin } = require('webpack')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const ESLintPlugin = require('eslint-webpack-plugin')
const StyleLintPlugin = require('stylelint-webpack-plugin')
module.exports = {
mode: Settings.mode.name,
devtool: false,