We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ce7a3d9 + bd3c49d commit 50fa25dCopy full SHA for 50fa25d
CHANGELOG.md
@@ -64,6 +64,7 @@
64
- Add support for [CFML](https://www.adobe.com/products/coldfusion-family.html), see #3031 (@brenton-at-pieces)
65
- Map `*.mkd` files to `Markdown` syntax, see issue #3060 and PR #3061 (@einfachIrgendwer0815)
66
- Add syntax mapping for kubernetes config files #3049 (@cyqsimon)
67
+- Add syntax mapping for `/etc/pacman.conf` #2961 (@cyqsimon)
68
69
## Themes
70
src/syntax_mapping/builtins/linux/50-pacman.toml
@@ -1,3 +1,8 @@
1
[mappings]
2
-# pacman hooks
3
-"INI" = ["/usr/share/libalpm/hooks/*.hook", "/etc/pacman.d/hooks/*.hook"]
+"INI" = [
+ # config
4
+ "/etc/pacman.conf",
5
+ # hooks
6
+ "/usr/share/libalpm/hooks/*.hook",
7
+ "/etc/pacman.d/hooks/*.hook",
8
+]
0 commit comments