-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GHI-#14] Implement C/C++ language styles
- Loading branch information
1 parent
3fa1c27
commit 41c7b85
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
title Language C/C++ + | ||
project nord-atom-syntax + | ||
version + | ||
repository https://github.com/arcticicestudio/nord-atom-syntax + | ||
author Arctic Ice Studio + | ||
email development@arcticicestudio.com + | ||
copyright Copyright (C) 2016 + | ||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
[Language Packages] | ||
> language-c (https://atom.io/packages/language-c) | ||
[References] | ||
Standard C++ | ||
(https://isocpp.org) | ||
*/ | ||
.source.c, | ||
.source.cpp { | ||
.punctuation { | ||
&.definition.directive { | ||
color: @syntax-color-keyword; | ||
} | ||
|
||
&.separator.pointer-access { | ||
color: @syntax-color-operator; | ||
} | ||
} | ||
|
||
.meta.preprocessor { | ||
color: @syntax-color-preprocessor; | ||
} | ||
|
||
.string.include { | ||
color: @syntax-color-class; | ||
} | ||
} |