All Projects → moxer-theme → moxer-code

moxer-theme / moxer-code

Licence: Apache-2.0 License
Moxer Theme brings your DX to another level.

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to moxer-code

Angular
A repositoy to learn and boost your Angular skills. It contains cheatsheet, code, articlues and all learning resources you need.
Stars: ✭ 49 (+32.43%)
Mutual labels:  hacktoberfest2021
Hacktoberfest-imagine-your-contribution
Contribute anything for your T-shirt, must be relevant that can add some value to this repo.
Stars: ✭ 16 (-56.76%)
Mutual labels:  hacktoberfest2021
NearBeach
NearBeach is an open sourced project management tool, helping you keep track of your project. You can track requirements, projects and tasks
Stars: ✭ 97 (+162.16%)
Mutual labels:  hacktoberfest2021
Hacktoberfest2021-DSA
If You know the implementation of any DSA related topic/problem then you can contribute it in this repo. Raise Genuine PRs only. Your PRs will be accepted, keep patience. Star this Repo. You aren't allowed to Update README.md. Welcoming developers, content writers, and programming enthusiasts.
Stars: ✭ 232 (+527.03%)
Mutual labels:  hacktoberfest2021
pbreadinglist
No description or website provided.
Stars: ✭ 19 (-48.65%)
Mutual labels:  hacktoberfest2021
downloadTimeCalculator
A site to get approximate download time
Stars: ✭ 25 (-32.43%)
Mutual labels:  hacktoberfest2021
HacktoberFest2021
Make changes on the website and check them.🎃
Stars: ✭ 0 (-100%)
Mutual labels:  hacktoberfest2021
WWCodePython
Content, Code & Resources for WWCodePython Events
Stars: ✭ 183 (+394.59%)
Mutual labels:  hacktoberfest2021
voyager-hf
Voyager website: A space website that can be used as a template in the future for space-related topics.
Stars: ✭ 34 (-8.11%)
Mutual labels:  hacktoberfest2021
MERN-E-Commerce
A simple E-Commerce app built on MERN stack with integrated Stripe Checkout.
Stars: ✭ 57 (+54.05%)
Mutual labels:  hacktoberfest2021
HealthBliss-Hacktoberfest2021
HealthBliss is a static responsive website which provides its users with good health reads on how to overcome anxiety, depression and bipolar disorders. Check the readme to know more.
Stars: ✭ 22 (-40.54%)
Mutual labels:  hacktoberfest2021
Footer-and-Header-design-Challenge
Contribute your design in Footer and Header design templates using HTML, CSS, JavaScript.
Stars: ✭ 12 (-67.57%)
Mutual labels:  hacktoberfest2021
cinesimile
CineSimile is a platform that shows similar movies for a specific movie.
Stars: ✭ 16 (-56.76%)
Mutual labels:  hacktoberfest2021
tbftss
2D mission-based space shooter, based on the Battle for the Solar System space opera novel trilogy.
Stars: ✭ 46 (+24.32%)
Mutual labels:  hacktoberfest2021
CPP-DSA
C++ Data Structures and Algorithms | College Placement Course taught by renowned faculties of Apni Kaksha (Aman Dhattarwal).
Stars: ✭ 53 (+43.24%)
Mutual labels:  hacktoberfest2021
wazuh-puppet
Wazuh - Puppet module
Stars: ✭ 25 (-32.43%)
Mutual labels:  hacktoberfest2021
forestTreesTagging
This project has the vision to assist the officials for Forest trees census and tagging each tree with proper location (latitude and longitude), tree type, and other arguments. and further had the plan to apply data analysis over-collected data.
Stars: ✭ 18 (-51.35%)
Mutual labels:  hacktoberfest2021
magento2-showoutofstockprice
This Magento2 Module adds prices and the add-to-cart button to out-of-stock configurable products.
Stars: ✭ 22 (-40.54%)
Mutual labels:  hacktoberfest2021
Caribay
A PEG Parser Generator with Semi-Automatic Error Recovery based on LPeg(Label)
Stars: ✭ 14 (-62.16%)
Mutual labels:  hacktoberfest2021
GoogleKickStart2020 Solutions
This repository will contain solutions of "Google Kick Start 2020" in C/C++/Java/Python. If you loved it, give a 🌟!
Stars: ✭ 137 (+270.27%)
Mutual labels:  hacktoberfest2021


Moxer Theme brings your DX to another level.





Getting started

You can install this awesome theme through the Visual Studio Code Marketplace.

Installation

Launch Quick Open:

Paste the following command and press Enter:

ext install moxer

GitHub Repository Clone

Change to your .vscode/extensions VS Code extensions directory. Depending on your platform it is located in the following folders:

  • Linux ~/.vscode/extensions
  • macOs ~/.vscode/extensions
  • Windows %USERPROFILE%\.vscode\extensions

Clone the Moxer Theme repository as equinusocio.moxer-theme:

git clone https://github.com/moxer-theme/moxer-code.git equinusocio.moxer-theme

Activate theme

Launch Quick Open:

Type theme, choose Preferences: Color Theme, and select Moxer Theme from the list.

Override theme colors

You can override the theme UI and schemes colors by adding these theme-specific settings to your configuration. For advanced customisation please check the relative section on the VS Code documentation.

Color Scheme override

Basic example

"editor.tokenColorCustomizations": {
    "[Moxer]": {
        "comments": "#229977"
    }
},

Advanced example

"editor.tokenColorCustomizations": {
    "[Moxer]": {
        "textMateRules": [
            {
                "scope": [
                    "punctuation.definition.comment",
                    "comment.block",
                    "comment.line",
                    "comment.block.documentation"
                ],
                "settings": {
                    "foreground": "#FF0000"
                }
            }
        ]
    },
},

"workbench.colorCustomizations": {
	"[Moxer]": {
		"sideBar.background": "#ff0000",
	}
},

Recommended settings for a better experience

{
  // Controls the font family. You need Operator Mono Font
  "editor.fontFamily": "Operator Mono Lig",
  // Controls the line height. Use 0 to compute the lineHeight from the fontSize.
  "editor.lineHeight": 30,
  // Enables font ligatures
  "editor.fontLigatures": true,
  // Controls if file decorations should use badges.
  "explorer.decorations.badges": true,
  // Disable GIT colors for files
  "explorer.decorations.colors": false
}

Copyright © 2020 Mattia Astorino

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].