1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2026-03-26 16:20:36 +01:00

7 Commits

Author SHA1 Message Date
dependabot[bot]
5a57141f39 Bump vim/.vim/pack/bundle/start/vim-pkgbuild from 5fc4106 to 2469a0a
Bumps [vim/.vim/pack/bundle/start/vim-pkgbuild](https://github.com/m-pilia/vim-pkgbuild) from `5fc4106` to `2469a0a`.
- [Commits](5fc4106609...2469a0a9f0)

---
updated-dependencies:
- dependency-name: vim/.vim/pack/bundle/start/vim-pkgbuild
  dependency-version: 2469a0a9f09410268a2c6b7e83767b7399ed9dd2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-05 21:31:36 +00:00
15757c1a16 remove stray module entry 2026-03-05 22:28:58 +01:00
30a97e6f2d Attempt to auto-update git submodules 2026-03-05 22:26:22 +01:00
c5ecd6c98d Fix memory reporting 2025-12-16 16:14:40 +01:00
a939dfe553 Alias I keep forgetting 2025-10-27 16:59:28 +01:00
47436ddc59 Missed modules 2025-05-30 13:23:31 +02:00
4bd7364423 Add PKGBUILD handling 2025-05-30 13:22:40 +02:00
6 changed files with 33 additions and 7 deletions

6
.github/dependabot.yml vendored Normal file
View File

@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: gitsubmodule
directory: /
schedule:
interval: weekly

9
.gitmodules vendored
View File

@@ -52,12 +52,9 @@
[submodule "vim/.vim/pack/bundle/start/vim-nix"]
path = vim/.vim/pack/bundle/start/vim-nix
url = https://github.com/LnL7/vim-nix.git
[submodule "vim/.vim/pack/bundle/start/vim-hcl"]
path = vim/.vim/pack/bundle/start/vim-hcl
url = https://github.com/jvirtanen/vim-hcl.git
[submodule "vim/.vim/pack/bundle/start/vim-hashicorp-tools"]
path = vim/.vim/pack/bundle/start/vim-hashicorp-tools
url = https://github.com/hashivim/vim-hashicorp-tools.git
[submodule "zsh/.config/zsh/plugins/zsh-auto-notify"]
path = zsh/.config/zsh/plugins/zsh-auto-notify
url = https://github.com/MichaelAquilina/zsh-auto-notify.git
[submodule "vim/.vim/pack/bundle/start/vim-pkgbuild"]
path = vim/.vim/pack/bundle/start/vim-pkgbuild
url = https://github.com/m-pilia/vim-pkgbuild.git

View File

@@ -37,7 +37,7 @@ audible_bell=Yes
blinking_cursor=No
allow_bold=Yes
cursor_type=VTE_CURSOR_SHAPE_BLOCK
palette=xterm
palette=1
add_tab_accelerator=5
del_tab_accelerator=5
switch_tab_accelerator=8
@@ -66,3 +66,20 @@ stop_tab_cycling_at_end_tabs=No
word_chars=-,./?%&#_~:
search_accelerator=5
search_key=F
colorset1_scheme=1
colorset2_scheme=1
colorset3_scheme=1
colorset4_scheme=1
colorset5_scheme=1
colorset6_scheme=1
bold_is_bright=false
show_tab_bar=multiple
copy_on_select=false
paste_button=2
menu_button=3
window_columns=80
window_rows=24
new_tab_after_current=true
line_height=1
new_window_accelerator=5
new_window_key=O

View File

@@ -54,6 +54,7 @@ fun! StripTrailingWhitespace()
endfun
autocmd BufWritePre * call StripTrailingWhitespace()
autocmd filetype pkgbuild setlocal tabstop=2 shiftwidth=2 expandtab
" Keep backup files etc out of the way
set undofile

View File

@@ -85,6 +85,9 @@ alias nrc='nix shell --file default.nix -c'
alias gcs='gcloud compute ssh --tunnel-through-iap'
alias gscp='gcloud compute scp --tunnel-through-iap'
alias gci='gcloud compute instances'
# This invocation is so much more complicated than it needs to be, but
# Google will only show mountain time otherwise.
alias gops='gcloud compute operations list --format=":(TIMESTAMP.date(tz=LOCAL))" --sort-by=TIMESTAMP'
# Not an alias but useful nonetheless.
function pasters() {
@@ -116,6 +119,7 @@ source "${ZDOTDIR:-$HOME}/.zshtheme"
# of RAM
REPORTTIME=10
REPORTMEMORY=10240
TIMEFMT='%J %U user %S system %P cpu %*E total; max RSS %MkB'
# Setup the CNF hook
if [[ -s /usr/share/doc/pkgfile/command-not-found.zsh ]]; then