start new:
tmux
start new with session name:
tmux new -s myname
I recently switched over to neovim (see my screenshots at the bottom). Below is my updated config file.
It's currently synchronized with my .vimrc config except for a block of neovim-specific terminal key mappings.
This is still a work in progress (everyone's own config is always a labor of love), but I'm already extremely pleased with how well this is working for me with neovim. While terminal mode isn't enough to make me stop using tmux, it is quite good and I like having it since it simplifies my documentation workflow for yanking terminal output to paste in a markdown buffer.
These days I primarily develop in Go. I'm super thrilled and grateful for fatih/vim-go,
| var touchstartX = 0; | |
| var touchstartY = 0; | |
| var touchendX = 0; | |
| var touchendY = 0; | |
| var gesuredZone = document.getElementById('gesuredZone'); | |
| gesuredZone.addEventListener('touchstart', function(event) { | |
| touchstartX = event.screenX; | |
| touchstartY = event.screenY; |
| 1) Create a branch with the tag | |
| git branch {tagname}-branch {tagname} | |
| git checkout {tagname}-branch | |
| 2) Include the fix manually if it's just a change .... | |
| git add . | |
| git ci -m "Fix included" | |
| or cherry-pick the commit, whatever is easier | |
| git cherry-pick {num_commit} | |
C:\cygwin64\bin\mintty.exe /usr/bin/zsh - . Make it the defaut shell.start C:\cygwin64\bin\mintty.exe /usr/bin/zsh -| import { Modal } from 'react-bootstrap' | |
| import ModalDialog from 'react-bootstrap/lib/ModalDialog' | |
| class DraggableModalDialog extends React.Component { | |
| render() { | |
| return <Draggable handle=".modal-title"><ModalDialog {...this.props} /></Draggable> | |
| } | |
| } | |
| // enforceForce=false causes recursion exception otherwise.... |
| <h1>VHS Filter</h1> | |
| <div class="wrapper"> | |
| <img src="https://source.unsplash.com/200x200/?i" class="js-vhs-filter" /> | |
| <img src="https://source.unsplash.com/200x200/?got" class="js-vhs-filter" /> | |
| <img src="https://source.unsplash.com/200x200/?love" class="js-vhs-filter" /> | |
| <img src="https://source.unsplash.com/200x200/?for" class="js-vhs-filter" /> | |
| <img src="https://source.unsplash.com/420x200/?those" class="js-vhs-filter" /> | |
| <img src="https://source.unsplash.com/200x200/?who" class="js-vhs-filter" /> | |
| <img src="https://source.unsplash.com/200x200/?were" class="js-vhs-filter" /> | |
| <img src="https://source.unsplash.com/200x200/?born" class="js-vhs-filter" /> |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| "comment", | |
| "comment.block", | |
| "comment.block.documentation", | |
| "comment.line", | |
| "constant", | |
| "constant.character", |
| # Apache Conf | |
| # Mod cgi required for cgi script | |
| <VirtualHost *:80> | |
| ServerName locahost | |
| # ServerAdmin webmaster@localhost | |
| DocumentRoot "/usr/share/cgit" | |
| <Directory "/usr/lib/cgit/"> |