Skip to content

Commit

Permalink
Update 2/1/2023
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekreeki committed Jan 2, 2023
1 parent c523393 commit 9714405
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 14 deletions.
27 changes: 19 additions & 8 deletions .gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@
[help]
autocorrect = 1

[credential]
helper = osxkeychain

[filter "media"]
required = true
Expand All @@ -88,12 +86,6 @@
clean = git hawser clean %f
smudge = git hawser smudge %f

[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process

[diff]
renames = copies
mnemonicprefix = true
Expand Down Expand Up @@ -130,3 +122,22 @@
old = red bold
new = green bold
whitespace = red reverse

[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f

# The first line resets the list of helpers so we can check Netlify's first.
[credential]
helper = ""

# This next lines include Netlify's Git Credential Helper configuration in your Git configuration.
[include]
path = /Users/mikekreeki/Library/Preferences/netlify/helper/git-config

[credential]
helper = osxkeychain
[http]
postBuffer = 157286400
12 changes: 6 additions & 6 deletions .nvimrc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ Plug 'Shougo/context_filetype.vim'
Plug 'hrsh7th/cmp-nvim-lsp'
Plug 'hrsh7th/cmp-buffer'
Plug 'hrsh7th/cmp-path'
Plug 'hrsh7th/cmp-cmdline'
Plug 'tzachar/cmp-tabnine', { 'do': './install.sh' }
Plug 'hrsh7th/nvim-cmp'
" Plug 'Shougo/echodoc.vim'
Expand Down Expand Up @@ -503,11 +502,13 @@ augroup nerdtree_config
" endif
endfunction

nnoremap <silent> q :call NERDTreeToggleInCurDir()<CR>
command NERDTreeOnCurrentDir :call NERDTreeToggleInCurDir()

" Focus file in current buffer in NERDTree
nnoremap <silent> Q :NERDTreeFind<CR>
" Fix width of buffers after NERDTree opens/closes
nnoremap <silent> q :exec 'NERDTreeOnCurrentDir' <Bar> wincmd =<CR>
" Focus file in current buffer in NERDTree
nnoremap <silent> Q :exec 'NERDTreeFind' <Bar> wincmd =<CR>
augroup END

" augroup ctrlp_config
Expand Down Expand Up @@ -882,8 +883,7 @@ lua << EOF
{ name = 'path' },
{ name = 'buffer' },
{ name = 'cmp_tabnine' },
{ name = 'cmdline' },
})
}),
})

cmp.setup.cmdline('/', {
Expand Down
3 changes: 3 additions & 0 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ export PATH="/usr/local/opt/postgresql@10/bin:$PATH"

export LDFLAGS="-L/usr/local/opt/postgresql@10/lib"
export CPPFLAGS="-I/usr/local/opt/postgresql@10/include"

# The next line updates PATH for Netlify's Git Credential Helper.
test -f '/Users/mikekreeki/Library/Preferences/netlify/helper/path.zsh.inc' && source '/Users/mikekreeki/Library/Preferences/netlify/helper/path.zsh.inc'

0 comments on commit 9714405

Please sign in to comment.