Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/le-michael/config
https://github.com/le-michael/config
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/le-michael/config
- Owner: le-michael
- Created: 2022-02-04T02:40:45.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-14T07:42:41.000Z (4 months ago)
- Last Synced: 2024-07-15T08:28:18.200Z (4 months ago)
- Language: Vim Script
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Linux setup
## Symlinks
```bash
# if using vim
ln -s $HOME/config/.vimrc $HOME/.vimrc
# if using nvim
ln -s $HOME/config/.vimrc $HOME/.config/nvim/init.vim
```## Jetbrains NF
https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/JetBrainsMono## OMZ
https://ohmyz.sh/## Terminal Colors
```json
{
"name": "Isotope",
"author": "",
"color": [
"#000000", // black
"#ff0000", // red
"#33ff00", // green
"#ff0099", // pink
"#0066ff", // blue
"#cc00ff", // purple
"#00ffff", // teal
"#d0d0d0", // gray
"#808080", // dark gray
"#ff0000", // red
"#33ff00", // green
"#ff0099", // pink
"#0066ff", // blue
"#cc00ff", // purple
"#00ffff", // teal
"#ffffff" // white
],
"foreground": "#d0d0d0",
"background": "#000000",
"backgroundAlt": "#191929"
}
```