A set of Vim, Git, Terminal/Shell, etc. configuration files.
-
" Nice-looking configuration set background=light let g:gruvbox_contrast_light='soft' let g:gruvbox_contrast_dark='soft' let g:gruvbox_italic=1 let g:gruvbox_guisp_fallback='bg' color gruvbox
-
railscasts
-
xoria256
-
seoul256
let g:seoul256_background = 233
-
codeschool
-
underwater-mod
-
blue (Out of the box)
-
herokudoc
-
rootwater
-
dracula
-
Tomorrow-Night-Blue
-
oxeded
-
lucius
-
corporation
-
oceanblack
-
transparent
-
molokai
-
moria
-
flattened_light
-
Slate
-
neon
-
no_quarter
-
matrix
-
cobalt2
-
lightcolors
-
laederon
-
gor
-
golden
-
freya
-
eclipse
-
dw_green
-
desert
-
desertEx
-
darker-robin
-
cloudy
-
chlordane
-
candy
-
breeze
-
borland
-
black_angus
-
bensday
-
PaperColor
-
seti
-
spring-night
-
iceberg
-
termschool
-
- base16-atelier-lakeside-light
- base16-default-dark
- base16-eighties
- base16-ocean
- base16-oceanicnext
- base16-railscasts
- base16-tomorrow
- base16-tomorrow-night
-
one
set background=dark
-
set bg=dark " light " set bg=light let g:one_allow_italics = 1 color one
-
onedark.vim
let g:onedark_terminal_italics=1
Collections:
- vim-colorschemes
- Awesome Vim Color Schemes
- Solarized 8: True Colors
- Rainglow for VIM 320+ color themes for VIM, preview
-
Plug 'mhinz/vim-grepper' --> grep results appear in a quickfix
-
Plug 'zhou13/vim-easyescape' --> provides
inoremap jk <Esc>
-
Plug 'Raimondi/delimitMate' --> provides insert mode auto-completion for quotes, brackets, etc.
-
Plug 'junegunn/goyo.vim' --> Distraction-free writing in Vim (paddings all sides)
-
Plug 'bilalq/lite-dfm' --> Distraction-free writing in Vim (paddings left+right)
-
Plug 'junegunn/limelight.vim' --> Hyperfocus-writing in Vim.
-
Plug 'kshenoy/vim-signature' --> displays the marks created by the user on the signs column, which is good for remembering which marks were created.
-
Plug 'mkitt/tabline.vim' --> Display Tab number, better rendering of tabs
-
Plug 'majutsushi/tagbar' --> displays tags in a window, in other words "Outline"
-
Plug 'junegunn/vim-emoji' --> Emoji in Vim
-
Plug 'neoclide/coc.nvim' --> Intellisense engine for vim8 & neovim, full language server protocol support as VSCode
-
Plug 'romainl/vim-qf' --> collection of settings, commands and mappings put together to make working with the location list/window and the quickfix list/window smoother
Plug 'neoclide/coc.nvim', {'tag': '*', 'do': { -> coc#util#install()}} :so % :PlugInstall :CocInstall coc-json coc-html coc-css $ gem install solargraph :CocInstall coc-solargraph
- SynthWave '84 - VS Code theme
Synthwave inspired colour theme for VS Code 🌅🕶
Terminal base16 favourites themes
base16_3024
base16_apathy
base16_atelier-dune
base16_atelier-dune-light
base16_atelier-estuary-light
base16_harmonic-dark
base16_hopscotch
base16_irblack
base16_marrakesh
base16_materia
base16_atelier-plateau-light
base16_mexico-light
base16_brewer
base16_bright
base16_chalk
Gamified experience to help you find your true love of coding fonts!
List of best Coding Fonts on CSS-Tricks
Click to expand!
Source Code Pro Regular
| homepageSF Mono Regular
- Cousine
Droid Sans Mono
- Roboto Mono
Ubuntu Mono
Hack
- IBM Plex Mono | homepage | Get Plex
- Anka/Coder
- Meslo # Customized version of Apple's Menlo font
- Monaco
- Monego # nice curved font, similar to Monaco
Menlo
Fira Mono
[1] | [2]Edlo
Consolas
Inconsolata
Monofur
- Hermit # необычный, уникальный
- Nitti PX
- Space Mono
- ProFfontIIx Nerd Mono # очешь просторный, начертание необычное
Terminus
Improve Font Rendering on Debian 8 By Installing Infinality and Ubuntu Fonts describes how to use OSX style
- Vim Cheat Sheet and Vim Commands Cheat Sheet
- Getting Started with Vim
- Effective Rails Development with Vim
- VIM Adventures - Learn VIM while playing a game
- fish is a smart and user-friendly command line shell with Autosuggestions just like a web browser.
-
Install NodeJS and JSHint
$ sudo apt install nodejs $ sudo apt-get install npm $ sudo npm install -g jshint
-
Create global configuration
~/.jshintrc
. Good example with all options explained is here