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: windows:
- gmscore: - 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: panes:
- main: - main:
- hgd gmscore - hgd gmscore
- vim - vim
- other: - other:
- hgd gmscore - hgd gmscore
- other2:
- hgd gmscore
- experimental: - 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: panes:
- main: - main:
- hgd experimental - hgd experimental
- vim - vim
- other: - other:
- hgd experimental - hgd experimental
- other2:
- hgd experimental
- notes: - 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: panes:
- main: - main:
- hgd notes - hgd notes
- cd ../company/users/cnieves/ - cd ../company/users/cnieves/
- vim - vim ~/zettelkasten/
- other: - other:
- hgd notes - hgd notes
- cd ../company/users/cnieves/ - cd ../company/users/cnieves/
- other2: - vim ~/zettelkasten/Todo.md
- hgd notes
- cd ../company/users/cnieves/
- vim: - 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: panes:
- main: - main:
- cd ~/.vim/prefs - cd ~/.vim/prefs
- vim - vim
- other: - other:
- cd ~/.vim/prefs - cd ~/.vim/prefs
- other2:
- cd ~/.vim/prefs

View File

@ -40,6 +40,12 @@ require('packer').startup(function(use)
use 'google/vim-searchindex' use 'google/vim-searchindex'
use {
'filipdutescu/renamer.nvim',
branch = 'master',
requires = { {'nvim-lua/plenary.nvim'} }
}
-- Pretty symbols -- Pretty symbols
use 'kyazdani42/nvim-web-devicons' use 'kyazdani42/nvim-web-devicons'

View File

@ -11,21 +11,21 @@ require('nvim-treesitter.configs').setup {
enable = true, enable = true,
-- rainbow markdown -- rainbow markdown
custom_captures = { -- custom_captures = {
["h1"] = "h1", -- ["h1"] = "h1",
["_h1"] = "_h1", -- ["_h1"] = "_h1",
["h2"] = "h2", -- ["h2"] = "h2",
["_h2"] = "_h2", -- ["_h2"] = "_h2",
["h3"] = "h3", -- ["h3"] = "h3",
["_h3"] = "_h3", -- ["_h3"] = "_h3",
["h4"] = "h4", -- ["h4"] = "h4",
["_h4"] = "_h4", -- ["_h4"] = "_h4",
["h5"] = "h5", -- ["h5"] = "h5",
["_h5"] = "_h5", -- ["_h5"] = "_h5",
}, -- },
indent = { indent = {
enable = true enable = true
}, },
disable = {"java"}, -- disable = {"java"},
}, },
} }