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