fix(nvim): recognize more files as hyprconf
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
b0313ac3d2
commit
45a4ae76a0
2 changed files with 4 additions and 1 deletions
|
@ -15,7 +15,6 @@ in {
|
|||
home = optionalAttrs neovimIde {
|
||||
packages = with pkgs; [
|
||||
gradle
|
||||
gradle-completion # FIXME: not working
|
||||
maven
|
||||
alejandra
|
||||
];
|
||||
|
|
|
@ -11,6 +11,10 @@ require('treesitter-context').setup({
|
|||
min_window_height = 20,
|
||||
})
|
||||
|
||||
vim.filetype.add({
|
||||
pattern = { [".*/hypr/.*%.conf"] = "hyprlang" },
|
||||
})
|
||||
|
||||
EOF
|
||||
|
||||
" Add line under context
|
||||
|
|
Loading…
Reference in a new issue