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 gcp 'git cherry-pick'
|
||||||
abbr gcpa 'git cherry-pick --abort'
|
abbr gcpa 'git cherry-pick --abort'
|
||||||
abbr gcpc 'git cherry-pick --continue'
|
abbr gcpc 'git cherry-pick --continue'
|
||||||
abbr gd 'git diff --word-diff=color'
|
abbr gd 'git diff'
|
||||||
abbr gdca 'git diff --word-diff=color --cached'
|
abbr gdca 'git diff --cached'
|
||||||
abbr gdcw 'git diff --word-diff=color --cached'
|
abbr gdcw 'git diff --cached --word-diff'
|
||||||
abbr gdct 'git diff --word-diff=color --staged'
|
abbr gdct 'git diff --staged'
|
||||||
abbr gdT 'git diff-tree --no-commit-id --name-only -r'
|
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 gf 'git fetch'
|
||||||
abbr gfa 'git fetch --all --prune --tags -f'
|
abbr gfa 'git fetch --all --prune --tags -f'
|
||||||
abbr gfo 'git fetch origin'
|
abbr gfo 'git fetch origin'
|
||||||
|
|
|
@ -4,7 +4,7 @@ function gl --description 'Git browse commits'
|
||||||
return 0
|
return 0
|
||||||
end
|
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 "$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 view_commit_nvim "$log_line_to_hash | xargs -I % sh -c 'git show %'"
|
||||||
set -l copy_commit_hash "$log_line_to_hash | wl-copy"
|
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
|
cleanup = scissors
|
||||||
verbose = true
|
verbose = true
|
||||||
[core]
|
[core]
|
||||||
abbrev = 9
|
|
||||||
editor = nvim
|
editor = nvim
|
||||||
excludesfile = ~/.config/git/ignore
|
excludesfile = ~/.config/git/ignore
|
||||||
[diff]
|
[diff]
|
||||||
|
|
|
@ -19,7 +19,7 @@ vim.o.termguicolors = true
|
||||||
vim.o.fileformat = 'unix'
|
vim.o.fileformat = 'unix'
|
||||||
vim.o.inccommand = 'split'
|
vim.o.inccommand = 'split'
|
||||||
vim.o.mouse = ''
|
vim.o.mouse = ''
|
||||||
vim.o.completeopt = 'menuone,noselect,fuzzy'
|
vim.o.completeopt = 'menuone,noselect'
|
||||||
vim.o.wildmode = 'longest:full,full'
|
vim.o.wildmode = 'longest:full,full'
|
||||||
vim.o.wildoptions = 'pum'
|
vim.o.wildoptions = 'pum'
|
||||||
vim.o.pumblend = 30
|
vim.o.pumblend = 30
|
||||||
|
|
|
@ -194,8 +194,7 @@ function M.hls_config()
|
||||||
cabalFormattingProvider = 'cabalfmt',
|
cabalFormattingProvider = 'cabalfmt',
|
||||||
formattingProvider = 'ormolu',
|
formattingProvider = 'ormolu',
|
||||||
maxCompletions = 20,
|
maxCompletions = 20,
|
||||||
plugin = { stan = { globalOn = false } },
|
plugin = { stan = { globalOn = false } }
|
||||||
sessionLoading = 'multipleComponents'
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue