~hedy/dotfiles

13636658f824e0af758b6450d915d18c49d05ed4 — hedy 7 months ago cdd1b6b
Add .DS_Store to ignore, rm pbcopy/pbpaste
4 files changed, 4 insertions(+), 16 deletions(-)

A .config/nvim/ftplugin/html.vim
M .gitignore_global
D bin/pbcopy
D bin/pbpaste
A .config/nvim/ftplugin/html.vim => .config/nvim/ftplugin/html.vim +3 -0
@@ 0,0 1,3 @@
setl tabstop=2
setl shiftwidth=2
setl softtabstop=2

M .gitignore_global => .gitignore_global +1 -0
@@ 1,3 1,4 @@
.vim/
# vim-obsession
Session.vim
.DS_Store

D bin/pbcopy => bin/pbcopy +0 -8
@@ 1,8 0,0 @@
#!/bin/bash

# the pbcopy script

tee | clip.exe

exit 0


D bin/pbpaste => bin/pbpaste +0 -8
@@ 1,8 0,0 @@
#!/bin/bash

# the pbpaste script

powershell.exe Get-Clipboard | sed 's/\r$//' | sed -z '$ s/\n$//'

exit 0