Change vim modeline

This commit is contained in:
T. R. Bernstein
2024-06-28 16:59:03 +02:00
committed by T. R. Bernstein
parent e55f199829
commit 4096da8d4d
12 changed files with 12 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env zsh
# vi: set expandtab ft=zsh tw=80 ts=2
# vi: set ft=zsh tw=80 ts=2
function versionGT() {
[[ "${1%.*}" -gt "${2%.*}" ]] || [[ "${1%.*}" -eq "${2%.*}" && "${1#*.}" -gt "${2#*.}" ]]

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env zsh
# vi: set expandtab ft=zsh tw=80 ts=2
# vi: set ft=zsh tw=80 ts=2
runModule() {
"$@"

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env zsh
# vi: ft=zsh
# vi: set ft=zsh tw=80 ts=2
function getQuestionsPrerequisites() {
cmds=(

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env zsh
# vi: ft=zsh
# vi: set ft=zsh tw=80 ts=2
function getComputerName() {
local moduleAnswer

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env zsh
# vi: ft=zsh
# vi: set ft=zsh tw=80 ts=2
export HOMEBREW_NO_ANALYTICS_THIS_RUN=1
export HOMEBREW_NO_ANALYTICS_MESSAGE_OUTPUT=1

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env zsh
# vi: ft=zsh
# vi: set ft=zsh tw=80 ts=2
function brewInstall() {
local identifier="$1"

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env zsh
# vi: ft=zsh
# vi: set ft=zsh tw=80 ts=2
function ensureRightAccess() {
local filesystemItem="$1"

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env zsh
# vi: ft=zsh
# vi: set ft=zsh tw=80 ts=2
function installMASApp() {
local currentUser="`who am i | cut -d' ' -f1`"

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env zsh
# vi: ft=zsh
# vi: set ft=zsh tw=80 ts=2
function ensureRightAccess() {
local filesystemItem="$1"

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env zsh
# vi: ft=zsh
# vi: set ft=zsh tw=80 ts=2
function addLibToStartupFile() {
}

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env zsh
# vi: ft=zsh
# vi: set ft=zsh tw=80 ts=2
function installGoogleFonts() {
local fontsDir=/Library/Fonts/Google-Fonts

View File

@@ -1,4 +1,5 @@
#!/usr/bin/env zsh
# vi: set ft=zsh tw=80 ts=2
function autoloadZShLib() {
test -d "${ASTZWEIG_ZSHLIB}" || { echo "This module needs astzweig/zshlib to work." >&2; return 99 }