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 {
|
home = optionalAttrs neovimIde {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
gradle
|
gradle
|
||||||
gradle-completion # FIXME: not working
|
|
||||||
maven
|
maven
|
||||||
alejandra
|
alejandra
|
||||||
];
|
];
|
||||||
|
|
|
@ -11,6 +11,10 @@ require('treesitter-context').setup({
|
||||||
min_window_height = 20,
|
min_window_height = 20,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
vim.filetype.add({
|
||||||
|
pattern = { [".*/hypr/.*%.conf"] = "hyprlang" },
|
||||||
|
})
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
" Add line under context
|
" Add line under context
|
||||||
|
|
Loading…
Reference in a new issue