Compare commits
2 Commits
eafe416805
...
c783887d3c
Author | SHA1 | Date |
---|---|---|
|
c783887d3c | |
|
0df578a987 |
|
@ -1,5 +1,6 @@
|
|||
env = WLR_DRM_DEVICES,/dev/dri/card0:/dev/dri/card1
|
||||
env = WLR_NO_HARDWARE_CURSORS,1
|
||||
env = GTK_THEME, Adwaita
|
||||
|
||||
$scripts = /home/user/.config/scripts
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@ require('lazy').setup({
|
|||
'ConradIrwin/vim-bracketed-paste',
|
||||
'airblade/vim-rooter',
|
||||
'nuchs/vim-hypr-nav',
|
||||
'luckasRanarison/tree-sitter-hypr',
|
||||
'debugloop/telescope-undo.nvim',
|
||||
'mhartington/formatter.nvim',
|
||||
{'vimwiki/vimwiki', init = function ()
|
||||
|
|
|
@ -24,3 +24,13 @@ treesitter.setup({
|
|||
},
|
||||
additional_vim_regex_highlighting = false,
|
||||
})
|
||||
|
||||
local parser_config = require("nvim-treesitter.parsers").get_parser_configs()
|
||||
parser_config.hypr = {
|
||||
install_info = {
|
||||
url = "https://github.com/luckasRanarison/tree-sitter-hypr",
|
||||
files = { "src/parser.c" },
|
||||
branch = "master",
|
||||
},
|
||||
filetype = "hypr",
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue