Merge branch 'master' of git.blakenorth.net/home/git/dotfiles
This commit is contained in:
commit
145caed986
6 changed files with 15 additions and 1 deletions
|
@ -40,6 +40,8 @@ set.ruler = false
|
|||
set.listchars = 'trail:~,tab:│ ,nbsp:␣,lead:·,extends:…,precedes:…'
|
||||
set.list = false
|
||||
set.mousemodel = 'extend'
|
||||
set.exrc = true
|
||||
set.secure = true
|
||||
|
||||
-- Disable smartindent when editing `nix` files
|
||||
autocmd("BufEnter", { pattern = "*.nix", callback = function() vim.opt_local.smartindent = false end })
|
||||
|
|
3
.config/shell/bin/how
Executable file
3
.config/shell/bin/how
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
test $# -gt 0 && where="$1" && shift
|
||||
IFS='+' eval 'curl "https://cht.sh/${where:-}/$*"'
|
|
@ -27,7 +27,7 @@ g() { git -C "$REPO" "$@"; }
|
|||
REPO_ABBR='echo ${REPO/"$HOME"/"~"}'
|
||||
|
||||
# `git pull` everything mentioned in the REPOS_TO_UPDATE variable
|
||||
IFS=: read -ra REPOS_TO_UPDATE_ARR <<< "${REPOS_TO_UPDATE:-}:${DOCS_DIR:-}:$HOME/bin:${NIXOS_DIR:-}:$HOME/code/faust-ideas:$HOME/.config/home-manager"
|
||||
IFS=: read -ra REPOS_TO_UPDATE_ARR <<< "${REPOS_TO_UPDATE:-}:${DOCS_DIR:-}:$HOME/bin:${NIXOS_DIR:-}:$HOME/code/faust-ideas:$HOME/.config/home-manager:$HOME/code/nixvim-config"
|
||||
for REPO in "${REPOS_TO_UPDATE_ARR[@]}"; do
|
||||
if [ -n "$REPO" ]; then
|
||||
if g rev-parse > /dev/null 2>&1; then
|
||||
|
|
4
.config/shell/bin/vvc
Executable file
4
.config/shell/bin/vvc
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
|
||||
cd "$(dirname "$(realpath "$1")")"
|
||||
eval "$EDITOR" "$@"
|
4
.config/shell/local/env
Normal file
4
.config/shell/local/env
Normal file
|
@ -0,0 +1,4 @@
|
|||
export REPOS_TO_UPDATE="/home/blake/Documents/pwp"
|
||||
export PATH="$HOME/.local/share/bottles/runners/wine-ge-proton8-14/bin:$PATH"
|
||||
|
||||
# vim:ft=bash
|
1
.config/shell/p10k/current
Symbolic link
1
.config/shell/p10k/current
Symbolic link
|
@ -0,0 +1 @@
|
|||
/home/blake/.config/shell/p10k/colorful-angular.p10k.zsh
|
Loading…
Add table
Reference in a new issue