this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'master' of github.com:ian-h-chamberlain/dotfiles into master

+9 -5
+2 -2
.config/iterm2/profiles/Default.json
··· 2 2 "Profiles": [ 3 3 { 4 4 "Set Local Environment Vars": true, 5 - "Working Directory": "", 5 + "Working Directory": "~/Documents", 6 6 "Prompt Before Closing 2": 2, 7 7 "Selected Text Color": { 8 8 "Red Component": 0.47127401828765869, ··· 186 186 "Green Component": 0.9268307089805603 187 187 }, 188 188 "BM Growl": true, 189 - "AWDS Window Directory": "~\/Documents\/", 189 + "AWDS Window Directory": "~/Documents/", 190 190 "Ansi 3 Color": { 191 191 "Red Component": 0.66385143995285034, 192 192 "Color Space": "sRGB",
+4 -1
.emacs.d/init.el
··· 27 27 '(auto-save-file-name-transforms (quote ((".*" "~/.emacs.d/autosave/" t)))) 28 28 '(backup-by-copying t) 29 29 '(backup-directory-alist (quote (("." . "~/.emacs.d/backup")))) 30 + '(before-save-hook (quote (delete-trailing-whitespace))) 30 31 '(browse-url-browser-function (quote browse-url-default-browser)) 31 32 '(delete-old-versions t) 32 33 '(display-line-numbers-width-start t) 33 34 '(evil-vsplit-window-right t) 34 35 '(fill-column 88) 36 + '(global-display-line-numbers-mode t) 35 37 '(hl-todo-color-background t) 36 38 '(hl-todo-keyword-faces 37 39 (quote ··· 68 70 '(package-selected-packages 69 71 (quote 70 72 (org hl-todo evil-collection monokai-theme evil-org evil ##))) 73 + '(require-final-newline t) 71 74 '(show-paren-mode t) 72 75 '(split-height-threshold nil) 73 76 '(version-control t)) ··· 83 86 ;; ================================================================================ 84 87 85 88 ;; ---------------------------------------------------------------------- 86 - ;; Package/Theme configuration 89 + ;; Package/Theme configuration 87 90 ;; ---------------------------------------------------------------------- 88 91 ;; Directory for non-package (require) calls 89 92 (add-to-list 'load-path "~/.emacs.d/lisp/")
.ssh/config

This is a binary file and will not be displayed.

+1 -1
Library/Application Support/Code/User/keybindings.json
··· 408 408 { 409 409 "key": "shift+j", 410 410 "command": "rust-analyzer.joinLines", 411 - "when": "editorTextFocus && neovim.mode == 'insert' && editorLangId == 'rust'" 411 + "when": "editorTextFocus && neovim.mode != 'insert' && editorLangId == 'rust'" 412 412 }, 413 413 { 414 414 "key": "shift+5",
+2 -1
Library/Application Support/Code/User/settings.json
··· 60 60 }, 61 61 "[redcode]": { 62 62 // Commonly used for aligning instructions 63 - "editor.tabSize": 8 63 + "editor.tabSize": 8, 64 + "editor.wordWrap": "on" 64 65 }, 65 66 "[starlark]": { 66 67 "editor.formatOnSave": true,