├── .gitignore ├── Fonts ├── OperatorMonoLig-Light.otf ├── OperatorMonoSSmLig-Book.otf ├── OperatorMonoSSmLig-Medium.otf ├── OperatorMonoLig-LightItalic.otf ├── OperatorMonoSSmLig-BookItalic.otf └── OperatorMonoSSmLig-MediumItalic.otf └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /Fonts/OperatorMonoLig-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujon-co/operator-mono-ligature/HEAD/Fonts/OperatorMonoLig-Light.otf -------------------------------------------------------------------------------- /Fonts/OperatorMonoSSmLig-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujon-co/operator-mono-ligature/HEAD/Fonts/OperatorMonoSSmLig-Book.otf -------------------------------------------------------------------------------- /Fonts/OperatorMonoSSmLig-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujon-co/operator-mono-ligature/HEAD/Fonts/OperatorMonoSSmLig-Medium.otf -------------------------------------------------------------------------------- /Fonts/OperatorMonoLig-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujon-co/operator-mono-ligature/HEAD/Fonts/OperatorMonoLig-LightItalic.otf -------------------------------------------------------------------------------- /Fonts/OperatorMonoSSmLig-BookItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujon-co/operator-mono-ligature/HEAD/Fonts/OperatorMonoSSmLig-BookItalic.otf -------------------------------------------------------------------------------- /Fonts/OperatorMonoSSmLig-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujon-co/operator-mono-ligature/HEAD/Fonts/OperatorMonoSSmLig-MediumItalic.otf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Operator-Mono-Ligature Font 2 | 3 | An awesome code font for code editor and the terminal. 4 | 5 | ## Usage 6 | 7 | ```sh 8 | git clone https://github.com/SujonHossain1/operator-mono-ligature.git 9 | ``` 10 | 11 | ### Configure Your Code Editor 12 | 13 | After Install font then update vscode settings.json file 14 | 15 | ```sh 16 | "editor.fontFamily": "OperatorMonoSSmLig-Book", 17 | "editor.fontLigatures": true, 18 | // for Windows 19 | "editor.fontFamily": "Operator Mono SSm Lig", 20 | "editor.fontLigatures": true, 21 | "editor.fontWeight": "400", // adjust for desired weight 22 | ``` 23 | > :warning: **If you are using window **: Restart VsCode 24 | --------------------------------------------------------------------------------