From b5e0162029d56e0cf586adf43d024a6704f9db7f Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Fri, 23 May 2025 16:05:14 +0200 Subject: [PATCH] Add modula-2 indentation rules --- .config/nvim/ftplugin/modula2.lua | 3 +++ .yashrc | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 .config/nvim/ftplugin/modula2.lua diff --git a/.config/nvim/ftplugin/modula2.lua b/.config/nvim/ftplugin/modula2.lua new file mode 100644 index 0000000..3b57b0b --- /dev/null +++ b/.config/nvim/ftplugin/modula2.lua @@ -0,0 +1,3 @@ +vim.bo.expandtab = true +vim.bo.tabstop = 2 +vim.bo.shiftwidth = 2 diff --git a/.yashrc b/.yashrc index 03aeefb..e043c1f 100755 --- a/.yashrc +++ b/.yashrc @@ -12,9 +12,6 @@ bindkey --emacs '\^L' clear-and-redraw-all bindkey --vi-insert '\^L' clear-and-redraw-all bindkey --vi-command '\^L' clear-and-redraw-all -# Define shortcuts. -alias rdpwin='xfreerdp /f /sound /v:192.168.0.4 /u:belka@caraus.de' - # Programming environment. command -v rbenv >/dev/null 2>&1 && eval "$(rbenv init -)"