1
0
Fork 0

Autocommitted updated scripts from mari-wovn

main
Marissa Staib 4 years ago
parent 7deb95893b
commit f370754a19
  1. 3
      .gitmodules
  2. 1
      ssh/authorized_keys
  3. 1
      tmux.conf
  4. 19
      vim/UltiSnips/markdown.snippets
  5. 1
      vim/bundle/ultisnips
  6. 6
      vimrc

3
.gitmodules vendored

@ -7,3 +7,6 @@
[submodule "ssh-find-agent"]
path = ssh-find-agent
url = https://github.com/wwalker/ssh-find-agent.git
[submodule "vim/bundle/ultisnips"]
path = vim/bundle/ultisnips
url = https://github.com/SirVer/ultisnips.git

@ -4,3 +4,4 @@ ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINsxWR5n8WREoU6d8diPS1tbE6VVvCOSFutgPybz8ZyW
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGfOanT92heZ6YuDtUx64hUlR+/blZqRI39v9fSfGY+O rock64@rock64
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFjdZqfgjifJmIfKgB1PPyU9N7q0RT8fw+/UOWnv0iX6 reya@EarthDaughter
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILYDh2+ANKksm6DEltm+naw+wXoGQG2OmKooXzqef3/o marissa@mari-wovn
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUj5KCi1QgnwfBTsEZR5ET9Mdav/W8zp4Za09Dhos6l mari-wovn@earthdaughter

@ -8,6 +8,7 @@ set-window-option -g mode-keys vi
set-window-option -g xterm-keys on
bind-key _ split-window -v
source-file $TMUX_CONF_DIR/tmux.screen.conf
set-option -g mouse on
#####################
# Terminal Properties

@ -0,0 +1,19 @@
snippet mac "Mac-only task"
- [ ] :apple: :white_small_square:
endsnippet
snippet lin "Linux-only task"
- [ ] :white_small_square: :penguin:
endsnippet
snippet bth "Both Mac and Linux task"
- [ ] :apple: :penguin:
endsnippet
snippet tip "Tip"
:bulb:
endsnippet
snippet exp "Experimental"
:test_tube:
endsnippet

@ -0,0 +1 @@
Subproject commit ee31ea1c7d08ced8577120b4c1d55c5a05351a75

@ -3,9 +3,15 @@
" Enable modern Vim features not compatible with Vi spec.
set nocompatible
" Enable mouse support.
set mouse=a
" Run Pathogen package manager
execute pathogen#infect()
" Set up vim-gfm-syntax
let g:gfm_syntax_emoji_conceal = 1
" Enable file type based indent configuration and syntax highlighting.
" Note that when code is pasted via the terminal, vim by default does not detect
" that the code is pasted (as opposed to when using vim's paste mappings), which

Loading…
Cancel
Save