Add PHP filetype for inc and module extensions
This commit is contained in:
parent
820ab697f1
commit
e8ffa065a1
|
@ -1,5 +1,7 @@
|
||||||
vim.filetype.add {
|
vim.filetype.add {
|
||||||
extension = {
|
extension = {
|
||||||
|
inc = "php",
|
||||||
|
module = "php",
|
||||||
theme = "php",
|
theme = "php",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
4
justfile
4
justfile
|
@ -1,8 +1,8 @@
|
||||||
_default:
|
_default:
|
||||||
just --list
|
just --list
|
||||||
|
|
||||||
build profile:
|
build profile *args:
|
||||||
nix build --json --no-link --print-build-logs ".#{{ profile }}"
|
nix build --json --no-link --print-build-logs ".#{{ profile }}" {{ args }}
|
||||||
|
|
||||||
check:
|
check:
|
||||||
nix flake check
|
nix flake check
|
||||||
|
|
Reference in a new issue