Compare commits
No commits in common. "0286af181b20f6d3eaabdd677a8e39eca4364527" and "0e45f3229a67963c403f6f4b77106723845d35d8" have entirely different histories.
0286af181b
...
0e45f3229a
7 changed files with 11 additions and 21 deletions
|
@ -1,11 +0,0 @@
|
|||
# https://gitlab.archlinux.org/pacman/pacman/-/issues/93
|
||||
pkgname=dummy
|
||||
pkgver=1
|
||||
pkgrel=1
|
||||
pkgdesc="Provides packages we do not want installed"
|
||||
arch=('any')
|
||||
provides=(
|
||||
'polkit'
|
||||
'rtkit'
|
||||
'udisks2'
|
||||
)
|
|
@ -45,12 +45,12 @@ abbr gcount 'git shortlog -sn'
|
|||
abbr gcp 'git cherry-pick'
|
||||
abbr gcpa 'git cherry-pick --abort'
|
||||
abbr gcpc 'git cherry-pick --continue'
|
||||
abbr gd 'git diff --word-diff=color'
|
||||
abbr gdca 'git diff --word-diff=color --cached'
|
||||
abbr gdcw 'git diff --word-diff=color --cached'
|
||||
abbr gdct 'git diff --word-diff=color --staged'
|
||||
abbr gd 'git diff'
|
||||
abbr gdca 'git diff --cached'
|
||||
abbr gdcw 'git diff --cached --word-diff'
|
||||
abbr gdct 'git diff --staged'
|
||||
abbr gdT 'git diff-tree --no-commit-id --name-only -r'
|
||||
abbr gdup 'git diff --word-diff=color @{upstream}'
|
||||
abbr gdup 'git diff @{upstream}'
|
||||
abbr gf 'git fetch'
|
||||
abbr gfa 'git fetch --all --prune --tags -f'
|
||||
abbr gfo 'git fetch origin'
|
||||
|
|
|
@ -4,7 +4,7 @@ function gl --description 'Git browse commits'
|
|||
return 0
|
||||
end
|
||||
|
||||
set -l log_line_to_hash "echo {} | grep -o '[a-f0-9]\{9\}' | head -1"
|
||||
set -l log_line_to_hash "echo {} | grep -o '[a-f0-9]\{7\}' | head -1"
|
||||
set -l view_commit "$log_line_to_hash | xargs -I % sh -c 'git show --color=always % | bat -ldiff'"
|
||||
set -l view_commit_nvim "$log_line_to_hash | xargs -I % sh -c 'git show %'"
|
||||
set -l copy_commit_hash "$log_line_to_hash | wl-copy"
|
||||
|
|
3
fish/.config/fish/functions/update.fish
Normal file
3
fish/.config/fish/functions/update.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function update --description 'Arch system update'
|
||||
paru -Syyuu --assume-installed polkit,rtkit,udisks2
|
||||
end
|
|
@ -22,7 +22,6 @@
|
|||
cleanup = scissors
|
||||
verbose = true
|
||||
[core]
|
||||
abbrev = 9
|
||||
editor = nvim
|
||||
excludesfile = ~/.config/git/ignore
|
||||
[diff]
|
||||
|
|
|
@ -19,7 +19,7 @@ vim.o.termguicolors = true
|
|||
vim.o.fileformat = 'unix'
|
||||
vim.o.inccommand = 'split'
|
||||
vim.o.mouse = ''
|
||||
vim.o.completeopt = 'menuone,noselect,fuzzy'
|
||||
vim.o.completeopt = 'menuone,noselect'
|
||||
vim.o.wildmode = 'longest:full,full'
|
||||
vim.o.wildoptions = 'pum'
|
||||
vim.o.pumblend = 30
|
||||
|
|
|
@ -194,8 +194,7 @@ function M.hls_config()
|
|||
cabalFormattingProvider = 'cabalfmt',
|
||||
formattingProvider = 'ormolu',
|
||||
maxCompletions = 20,
|
||||
plugin = { stan = { globalOn = false } },
|
||||
sessionLoading = 'multipleComponents'
|
||||
plugin = { stan = { globalOn = false } }
|
||||
}
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue