]> git.madduck.net Git - etc/lazyvim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

change map leader to ;
authormartin f. krafft <madduck@madduck.net>
Fri, 18 Apr 2025 10:28:02 +0000 (12:28 +0200)
committermartin f. krafft <madduck@madduck.net>
Wed, 6 Aug 2025 09:57:17 +0000 (11:57 +0200)
.config/lazyvim/after/ftplugin/markdown.vim
.config/lazyvim/lazy-lock.json
.config/lazyvim/lua/config/options.lua
.config/lazyvim/lua/plugins/vim-table-mode.lua [new file with mode: 0644]
.gitignore.d/lazyvim

index 56c2837e2d88cd2161981ec746ff2926d4ba22ad..3b817efafe798990a56d5d876dda8c647588aaf2 100644 (file)
@@ -1,3 +1,5 @@
+let g:table_mode_corner = '|'
+
 if !exists("g:markdown_in_mail")
   setlocal wrap
   setlocal linebreak
index 0cc38cfc141cb0507b0355e299c8d72f48f5902c..fa649ace05610c25fea438b0565a80e77999f63a 100644 (file)
@@ -30,5 +30,6 @@
   "tokyonight.nvim": { "branch": "main", "commit": "057ef5d260c1931f1dffd0f052c685dcd14100a3" },
   "trouble.nvim": { "branch": "main", "commit": "85bedb7eb7fa331a2ccbecb9202d8abba64d37b3" },
   "ts-comments.nvim": { "branch": "main", "commit": "1bd9d0ba1d8b336c3db50692ffd0955fe1bb9f0c" },
+  "vim-table-mode": { "branch": "master", "commit": "9ac358083943f6339fc304a6e218b634fd1e30bd" },
   "which-key.nvim": { "branch": "main", "commit": "370ec46f710e058c9c1646273e6b225acf47cbed" }
 }
index 6ddca4c02945f4edf88a7b61d8724e1117e06a9d..edb1754c01fc3be4ff5f543d8dd80e6e5b49fe59 100644 (file)
@@ -2,6 +2,9 @@
 -- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
 -- Add any additional options here
 
+vim.g.mapleader = ";"
+vim.g.maplocalleader = vim.g.mapleader
+
 local opt = vim.opt
 
 opt.confirm = false
diff --git a/.config/lazyvim/lua/plugins/vim-table-mode.lua b/.config/lazyvim/lua/plugins/vim-table-mode.lua
new file mode 100644 (file)
index 0000000..d69eec8
--- /dev/null
@@ -0,0 +1,7 @@
+return {
+  {
+    "dhruvasagar/vim-table-mode",
+    version = "*",
+    event = "VeryLazy",
+  },
+}
index e0c52150c0bfe01a393df98a788cc89fdd715a35..4a8ff9c20174a8a9a8ed094b02d96fef0dbedadd 100644 (file)
@@ -18,6 +18,7 @@
 !/.config/lazyvim/lua/config/options.lua
 !/.config/lazyvim/lua/plugins/disabled.lua
 !/.config/lazyvim/lua/plugins/example.lua
+!/.config/lazyvim/lua/plugins/vim-table-mode.lua
 !/.config/lazyvim/options.lua
 !/.config/lazyvim/plugin/colorscheme.lua
 !/.config/lazyvim/plugin/disable_smooth_scroll.lua