From 66e9abbdee9536e08a686a4393dafa4ab88d74dc Mon Sep 17 00:00:00 2001 From: Christian Nieves Date: Wed, 7 Dec 2022 17:27:35 +0000 Subject: [PATCH] stuff --- .../after/queries/markdown/highlights.csm | 15 ----------- .../after/queries/markdown/highlights.scm | 15 ----------- tmux/.tmuxinator/dev.yml | 24 +++++++---------- vim/.vim/lua/plugins.lua | 6 +++++ vim/.vim/lua/treesitter.lua | 26 +++++++++---------- 5 files changed, 29 insertions(+), 57 deletions(-) delete mode 100644 config/.config/nvim/after/queries/markdown/highlights.csm delete mode 100644 config/.config/nvim/after/queries/markdown/highlights.scm diff --git a/config/.config/nvim/after/queries/markdown/highlights.csm b/config/.config/nvim/after/queries/markdown/highlights.csm deleted file mode 100644 index 2470121..0000000 --- a/config/.config/nvim/after/queries/markdown/highlights.csm +++ /dev/null @@ -1,15 +0,0 @@ -((atx_heading - (atx_h1_marker) @_h1 - (_) @h1)) -((atx_heading - (atx_h2_marker) @_h2 - (_) @h2)) -((atx_heading - (atx_h3_marker) @_h3 - (_) @h3)) -((atx_heading - (atx_h4_marker) @_h4 - (_) @h4)) -((atx_heading - (atx_h5_marker) @_h5 - (_) @h5)) diff --git a/config/.config/nvim/after/queries/markdown/highlights.scm b/config/.config/nvim/after/queries/markdown/highlights.scm deleted file mode 100644 index 2470121..0000000 --- a/config/.config/nvim/after/queries/markdown/highlights.scm +++ /dev/null @@ -1,15 +0,0 @@ -((atx_heading - (atx_h1_marker) @_h1 - (_) @h1)) -((atx_heading - (atx_h2_marker) @_h2 - (_) @h2)) -((atx_heading - (atx_h3_marker) @_h3 - (_) @h3)) -((atx_heading - (atx_h4_marker) @_h4 - (_) @h4)) -((atx_heading - (atx_h5_marker) @_h5 - (_) @h5)) diff --git a/tmux/.tmuxinator/dev.yml b/tmux/.tmuxinator/dev.yml index a945f3b..9e75322 100644 --- a/tmux/.tmuxinator/dev.yml +++ b/tmux/.tmuxinator/dev.yml @@ -3,46 +3,42 @@ name: dev windows: - gmscore: - layout: 02a8,363x89,0,0[363x74,0,0,14,363x14,0,75{181x14,0,75,15,181x14,182,75,17}] + # layout: 02a8,363x89,0,0[363x74,0,0,14,363x14,0,75{181x14,0,75,15,181x14,182,75,17}] + layout: main-vertical panes: - main: - hgd gmscore - vim - other: - hgd gmscore - - other2: - - hgd gmscore - experimental: - layout: 02a8,363x89,0,0[363x74,0,0,14,363x14,0,75{181x14,0,75,15,181x14,182,75,17}] + # layout: 02a8,363x89,0,0[363x74,0,0,14,363x14,0,75{181x14,0,75,15,181x14,182,75,17}] + layout: main-vertical panes: - main: - hgd experimental - vim - other: - hgd experimental - - other2: - - hgd experimental - notes: - layout: 02a8,363x89,0,0[363x74,0,0,14,363x14,0,75{181x14,0,75,15,181x14,182,75,17}] + # layout: 02a8,363x89,0,0[363x74,0,0,14,363x14,0,75{181x14,0,75,15,181x14,182,75,17}] + layout: main-vertical panes: - main: - hgd notes - cd ../company/users/cnieves/ - - vim + - vim ~/zettelkasten/ - other: - hgd notes - cd ../company/users/cnieves/ - - other2: - - hgd notes - - cd ../company/users/cnieves/ + - vim ~/zettelkasten/Todo.md - vim: - layout: 02a8,363x89,0,0[363x74,0,0,14,363x14,0,75{181x14,0,75,15,181x14,182,75,17}] + # layout: 02a8,363x89,0,0[363x74,0,0,14,363x14,0,75{181x14,0,75,15,181x14,182,75,17}] + layout: main-vertical panes: - main: - cd ~/.vim/prefs - vim - other: - cd ~/.vim/prefs - - other2: - - cd ~/.vim/prefs diff --git a/vim/.vim/lua/plugins.lua b/vim/.vim/lua/plugins.lua index 80731ca..3bd69cb 100644 --- a/vim/.vim/lua/plugins.lua +++ b/vim/.vim/lua/plugins.lua @@ -40,6 +40,12 @@ require('packer').startup(function(use) use 'google/vim-searchindex' + use { + 'filipdutescu/renamer.nvim', + branch = 'master', + requires = { {'nvim-lua/plenary.nvim'} } + } + -- Pretty symbols use 'kyazdani42/nvim-web-devicons' diff --git a/vim/.vim/lua/treesitter.lua b/vim/.vim/lua/treesitter.lua index 886d0a6..411b096 100644 --- a/vim/.vim/lua/treesitter.lua +++ b/vim/.vim/lua/treesitter.lua @@ -11,21 +11,21 @@ require('nvim-treesitter.configs').setup { enable = true, -- rainbow markdown - custom_captures = { - ["h1"] = "h1", - ["_h1"] = "_h1", - ["h2"] = "h2", - ["_h2"] = "_h2", - ["h3"] = "h3", - ["_h3"] = "_h3", - ["h4"] = "h4", - ["_h4"] = "_h4", - ["h5"] = "h5", - ["_h5"] = "_h5", - }, + -- custom_captures = { + -- ["h1"] = "h1", + -- ["_h1"] = "_h1", + -- ["h2"] = "h2", + -- ["_h2"] = "_h2", + -- ["h3"] = "h3", + -- ["_h3"] = "_h3", + -- ["h4"] = "h4", + -- ["_h4"] = "_h4", + -- ["h5"] = "h5", + -- ["_h5"] = "_h5", + -- }, indent = { enable = true }, - disable = {"java"}, + -- disable = {"java"}, }, }