Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgorbatchev committed May 31, 2024
0 parents commit fb04020
Show file tree
Hide file tree
Showing 11 changed files with 12,630 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
module.exports = {
overrides: [
{
files: ["./**/*.ts"],
parser: "@typescript-eslint/parser",
extends: ["plugin:@typescript-eslint/recommended"],
parserOptions: {
ecmaVersion: 2018,
sourceType: "module",
},
rules: {
indent: ["error", 2],
},
},
{
files: ["./**/*.tsx"],
parser: "@typescript-eslint/parser",
extends: ["plugin:@typescript-eslint/recommended"],
parserOptions: {
ecmaVersion: 2018,
sourceType: "module",
jsx: true,
},
rules: {
indent: ["error", 2],
},
},
{
files: ["./*.js"],
extends: ["eslint:recommended"],
env: {
node: true,
},
parserOptions: {
ecmaVersion: 2018,
sourceType: "module",
},
rules: {
indent: ["error", 2],
"no-unused-vars": "off",
},
},
],
};
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
.dev
dist
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"search.exclude": {
"**/node_modules": true,
"package-lock.json": true,
"**/*.code-search": true
}
}
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Alex Gorbatchev

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# openlens-mono-font

OpenLens extension to change font to monospace, specifically: `'JetBrainsMono Nerd Font', 'Cascadia Code', Consolas, monospace`.

![](screenshot.png)

# Installing this extension

In OpenLens, navigate to the Extensions list. In the text box, enter the name of this extension:

```
openlens-mono-font
```

Click "Install", and after a few moments, the plugin should appear in the list of installed extensions and be enabled.

You may need to restart OpenLens if you don't see changed fonts.
Loading

0 comments on commit fb04020

Please sign in to comment.