How to mark 80-characters column limit in Vi?
All standard color schemes: ls /usr/share/vim/vim81/colorsIf you type vim --version you'll see the path that vim uses to load your configuration. Крутые уроки по работе с Vi https://habr.com/ru/articles/307084/ https://pragprog.com/search/?q=p Color converter https://github.com/NTBBloodbath/color-converter.nvim Хороший плагин для Vim https://github.com/amadeus/vim-convert-color-to Color Table in Vim https://github.com/guns/xterm-color-table.vim INSPIRED BY: Использованные материалы: https://stackoverflow.com/questions/6230490/how-i-can-change-cursor-color-in-vims-color-scheme https://vim.fandom.com/wiki/Configuring_the_cursor https://vim.fandom.com/wiki/Xterm256_color_names_for_console_Vim https://vim.fandom.com/wiki/256_colors_in_vim https://www.vim.org/scripts/script.php?script_id=3412 https://github.com/guns/xterm-color-table.vim https://phoenixnap.com/kb/vim-color-schemes All standard color schemes: ls /usr/share/vim/vim81/colors All syntax: ls /usr/share/vim/vim81/syntax https://alvinalexander.com/linux/vi-vim-editor-color-scheme-syntax/ https://vimdoc.sourceforge.net/htmldoc/syntax.html https://codeyarns.com/tech/2015-03-18-how-to-check-colors-supported-by-terminal.html https://github.com/jaxbot/semantic-highlight.vim:highlight in syntax.txt
vim-monokai - Monokai color scheme for Vim converted with coloration from Textmate theme with the same name.
Molokai - color scheme for Vim
Oceanic-Next.vim - Oceanic Next theme for neovim
Nightfox - 🦊A highly customizable theme for vim and neovim with support for lsp, treesitter and a variety of plugins.
Catppuccin - 🍨 Soothing pastel theme for (Neo)vim
vim-colors-xcode - Xcode 11’s dark and light colourschemes for Vim
gruvbox - Retro groove color scheme for Vim
inkpot - Inkpot 88/256 Colour Scheme for Vim
Nord - An arctic, north-bluish color palette.
onedark.vim - A dark Vim/Neovim color scheme inspired by Atom's One Dark syntax theme.
seoul256.vim - 🌳 Low-contrast Vim color scheme based on Seoul Colors
Apprentice - A dark, low-contrast, Vim colorscheme.
ICEBERG - 🇦🇶 Bluish color scheme for Vim and Neovim
ayu.vim - Modern theme for modern VIMs
Challenger Deep Theme - FlatColor vim colorscheme
jellybeans.vim - A colorful, dark color scheme for Vim.
vim.one - Adaptation of one-light and one-dark colorschemes for Vim
vim-colors-meh - My perpetually WIP colorscheme
desertink.vim - A Vim colorscheme based on desert.
sonokai - High Contrast & Vivid Color Scheme based on Monokai Pro
Simple Black - A black colorscheme for vim, real black background, #000000
Orbital - Dark blue base16 theme for 256-color terminals
moonfly - A dark charcoal theme for modern Neovim & classic Vim
OneDark.nvim - One dark and light colorscheme for neovim >= 0.5.0 written in lua based on Atom's One Dark and Light theme. Additionally, it comes with 5 color variant styles
Dracula - 🧛🏻♂️ Dark theme for Vim
ZENBURN - Zenburn is a low-contrast color scheme for Vim.
BLAQUEMAGICK - greyscale monochrome with a blue highlight vim colorscheme
Hemisu - A Vim color scheme with dark and light variants
nofrils - An extremely minimalist colorscheme, even opting out of the second L in frills
Fahrenheit - Dark, warm base16 Vim theme for 256-color terminals
Quantum - A Material color scheme for Vim.
vim-hybrid-material - Material color scheme for Vim based on w0ng/vim-hybrid color scheme
Railscasts - A GUI & 256 color port of the Railscasts Textmate theme to Vim
Yin-Yang - Low contrast black/white color scheme for Vim
NeoDark - Dark theme for NeoVim
ZenGarden - Calm color scheme for vim/neovim
Zenbones - 🪨 A collection of contrast-based Vim/Neovim colorschemes
Friffle - Simple vim & neovim colorscheme theme
VIM (BETA) - 320+ color themes for VIM.
vim-atom-dark - A vim theme inspired by Atom's default dark theme
vim-aurora - dark theme for vim
palenight.vim - Soothing color scheme for your favorite [best] text editor
Spaceduck 🚀🦆 - 🚀 🦆 An intergalactic space theme for Vim, Terminal, and more!
melange.vim - 🗡️ Warm color scheme for Neovim and beyond
Tokyo Night - 🏙 A clean, dark Neovim theme written in Lua, with support for lsp, treesitter and lots of plugins. Includes additional themes for Kitty, Alacritty, iTerm and Fish.
Distinguished - A dark vim color scheme for 256-color terminals.
Distill - dark "mid-contrast" theme for neovim/gvim
Installation
https://github.com/ku1ik/vim-monokai
unzip vim-monokai-master.zip
cd vim-monokai-master
mv colors ~/.vim
vi ~/.vimrc
syntax enable " eneble colorscheme monokai
set background=dark
colorscheme monokai
wq
EasyMotion - EasyMotion provides a much simpler way to use some motions in vim.
vim-sneak - The missing motion for Vim 👟
Indent Guides - A Vim plugin for visually displaying indent levels in code
indentLine - A vim plugin to display the indention levels with thin vertical lines
Rainbow Parentheses - Better Rainbow Parentheses
Airline - lean & mean status/tabline for vim that's light as air
highlight LineNr ctermfg=grey ctermbg=white guibg=white guifg=grey
ctermbg for command-line vim
guibg for graphical vim (gvim, macvim, etc), respectively
ctermfg, guifg - text color
ctermfg, guibg - background color
How to display line number in Vi? Turn on line numbering: :set number Turn off line numbering: :set nonumber Turn on relative line numbers by typing: :set relativenumber What color scheme is installed in Vi? :colorscheme How to change the color scheme? :colorscheme morning All standard color schemes: ls /usr/share/vim/vim81/colors How to enable black and white default theme? :colorscheme default If it doesn't work, open the file: vi /etc/vim/vimrc find and comment out the lines: " if has("syntax") " syntax on " endif Save and exit: wq And open the file: vi ~/.vimrc find and comment out the line: " syntax on Save and exit: wq How to reload .vimrc file without restarting vim on Linux/Unix? :so % or :so ~/.vimrc!Note that if you're using a GUI version of vim, .gvimrc color settings get applied second and can clobber the ones in .vimrc
Back | Modified , email |