This commit is contained in:
Christian Nieves
2022-12-07 17:27:35 +00:00
parent 53859df69b
commit 66e9abbdee
5 changed files with 29 additions and 57 deletions

View File

@ -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))

View File

@ -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))

View File

@ -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

View File

@ -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'

View File

@ -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"},
},
}