Skip to content

A combination of both Atom's iconic theme and Material Theme for VSCode

License

Notifications You must be signed in to change notification settings

excalith/atomized-theme-vscode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Atomized Theme

Atomized Theme is a combination of both Atom's iconic theme and Material Theme's syntax highlighting. A relief for sore eyes!

Atomized Theme Screenshot

Contribution

You are more than welcome to contribute the Atomized Theme Repo

Recommended Extensions

  • FiraCode Font - A monospaced font with ligatures for programming
  • Material Icon Theme - Minimal icon set for files
  • Bookmarks - Helps you to navigate through your code, moving between important positions easily and quickly.
  • GitLens - Visualizes valuable git related information within your code.
  • Todo Tree - Searches your project for your tags like TODO and FIXME, and displays them in a tree view in the explorer pane. Can also highlight / colorize line as you want. Here is sample settings for it
    "todo-tree.showInExplorer": false,
    "todo-tree.tags": [
        "TODO:",
        "FIXME:",
        "FIXED:",
        "HACK:"
    ],
    "todo-tree.defaultHighlight": {
        "type": "text"
    },
    "todo-tree.customHighlight": {
        "TODO:": {
            "icon": "check",
            "iconColour": "#ff8800",
            "foreground": "#ff8800"
        },
        "FIXED:": {
            "icon": "issue-closed",
            "iconColour": "#9251eb",
            "foreground": "#9251eb"
        },
        "FIXME:": {
            "icon": "issue-opened",
            "iconColour": "#c80000",
            "foreground": "#c80000"
        },
        "HACK:": {
            "icon": "terminal",
            "iconColour": "#00ff00",
            "foreground": "#00ff00"
        }
    }
  • Bracket Pair Colorizer - Shows matching brackets to be identified with their own colours. Can also show matching pair in gutter which is nice.
    "bracketPairColorizer.showBracketsInGutter": true,
    "bracketPairColorizer.showHorizontalScopeLine": false,
    "bracketPairColorizer.showVerticalScopeLine": false
  • Trailing Spaces - Shows all trailing spaces in a nice way. Also has an option to trim only modified lines, so you won't have any headache with merge conflicts.
    "trailing-spaces.deleteModifiedLinesOnly": true,
    "trailing-spaces.trimOnSave": true,

About

A combination of both Atom's iconic theme and Material Theme for VSCode

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published