diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-06-26 17:04:45 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-06-26 17:04:45 +0900 |
| commit | d4cd34bb4889ee5865d9eae837a2f65492708639 (patch) | |
| tree | a25d8e11efbdeda040edeaf4088d7bdc3cc6c908 | |
| parent | d4901521cadf7bb0362be82bd6209b24c4d90aa2 (diff) | |
created bin/vimwikitodo
| -rwxr-xr-x | ar/.local/bin/vimwikitodo | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ar/.local/bin/vimwikitodo b/ar/.local/bin/vimwikitodo new file mode 100755 index 0000000..99758f4 --- /dev/null +++ b/ar/.local/bin/vimwikitodo @@ -0,0 +1,8 @@ +#!/bin/sh + +nvim +'setlocal nonumber norelativenumber noruler signcolumn=no' \ + +'set laststatus=0 showtabline=0' \ + +'silent lua vim.diagnostic.disable()' \ + +'silent lua vim.api.nvim_clear_autocmds({ event = { "CursorHold", "CursorHoldI" }, buffer = 0 })' \ + +'lua vim.defer_fn(function() local ok, lualine = pcall(require, "lualine"); if ok then lualine.hide() end end, 100)' \ + ~/.local/share/vimwiki/todo.md |
