mirror of
https://github.com/drewcassidy/dotfiles
synced 2024-09-01 18:24:06 +00:00
add some fish aliases, git aliases, and update atom config
This commit is contained in:
parent
4ebc3fd1c9
commit
54026850ef
@ -34,6 +34,7 @@
|
||||
tabLength: 4
|
||||
"exception-reporting":
|
||||
userId: "c6ecdfe6-c496-4331-937d-5bb16acf637e"
|
||||
"highlight-selected": {}
|
||||
jekyll: {}
|
||||
"markdown-preview":
|
||||
useGitHubStyle: true
|
||||
@ -62,6 +63,9 @@
|
||||
editor:
|
||||
softWrapHangingIndent: 2
|
||||
tabType: "soft"
|
||||
".python.source":
|
||||
editor:
|
||||
autoIndentOnPaste: true
|
||||
".sass.source":
|
||||
editor:
|
||||
softWrapHangingIndent: 2
|
||||
|
@ -18,3 +18,4 @@ set FLCLR_USER_FG white
|
||||
set -gx GCC_COLORS 'error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
|
||||
set -gx CLICOLOR 1
|
||||
set -gx LSCOLORS 'ExcxdxfxgxxexcxdxfBxBx'
|
||||
|
||||
|
4
fish/.config/fish/functions/vi.fish
Normal file
4
fish/.config/fish/functions/vi.fish
Normal file
@ -0,0 +1,4 @@
|
||||
# Defined in - @ line 0
|
||||
function vi --description 'alias vi vim'
|
||||
vim $argv;
|
||||
end
|
17
git/.gitconfig
Normal file
17
git/.gitconfig
Normal file
@ -0,0 +1,17 @@
|
||||
[user]
|
||||
name = drewcassidy
|
||||
email = drewcassidy@me.com
|
||||
signingkey = 8FD477A1
|
||||
[core]
|
||||
autocrlf = input
|
||||
[commit]
|
||||
gpgsign = true
|
||||
[gpg]
|
||||
program = /usr/local/bin/gpg
|
||||
[filter "lfs"]
|
||||
clean = git-lfs clean -- %f
|
||||
smudge = git-lfs smudge -- %f
|
||||
process = git-lfs filter-process
|
||||
required = true
|
||||
[alias]
|
||||
tree = log --all --decorate --oneline --graph
|
Loading…
Reference in New Issue
Block a user