From 0bfd715780350d25811af07c56a05d179bad488d Mon Sep 17 00:00:00 2001 From: self Date: Sat, 25 Feb 2023 22:03:07 +0000 Subject: Remove TODO comments plugin. --- init.vim | 10 ---------- zsh/.zshrc | 5 ++++- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/init.vim b/init.vim index ff653a7..ded78d4 100755 --- a/init.vim +++ b/init.vim @@ -186,7 +186,6 @@ Plug 'nvim-lua/lsp_extensions.nvim' Plug 'nvim-lua/plenary.nvim' Plug 'mfussenegger/nvim-dap' -Plug 'folke/todo-comments.nvim' Plug 'nvim-lua/popup.nvim' Plug 'RishabhRD/lspactions' @@ -253,15 +252,6 @@ require'lspconfig'.ccls.setup{} -- C++ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --- Haskell -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -require'lspconfig'.hls.setup{} --- Haskell -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - --- Others -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -require'lspconfig'.ltex.setup{} -require'lspconfig'.ols.setup{} --- Others -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -- BEGIN -- Go -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- require'lspconfig'.gopls.setup{ cmd = { "gopls", "serve" }, diff --git a/zsh/.zshrc b/zsh/.zshrc index c2fd984..d12b918 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -72,11 +72,14 @@ abbrev-alias x="clear; ls" abbrev-alias t="ls --tree" # cd aliases, from $ORGD_CDALIAS_PATH +strip-comments "$ORGD_CDALIAS_PATH" | strip-blank > /tmp/orgd-cd-aliases while read l ; do a="cd$(echo $l | awk -F' ' '{print $1}')"; c="$(echo $l | awk -F' ' '{print $2}')" alias $a="cd $c" -done < $ORGD_CDALIAS_PATH +done < /tmp/orgd-cd-aliases +rm /tmp/orgd-cd-aliases + # vim / nvim alias vim="nvim" -- cgit v1.2.1