All Projects → taeseunglee → taeseung_vimrc

taeseunglee / taeseung_vimrc

Licence: other
Taeseung Lee's vim setting

Programming Languages

Vim Script
2826 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to taeseung vimrc

cake-atom-syntax
Yummy syntax theme for Atom
Stars: ✭ 17 (+6.25%)
Mutual labels:  color-scheme
material-colors
Material colorscheme
Stars: ✭ 25 (+56.25%)
Mutual labels:  color-scheme
color-system
🎨 Easiest way to get a universal color palette
Stars: ✭ 21 (+31.25%)
Mutual labels:  color-scheme
typora-hivacruz-theme
A Typora theme forked from Cobalt to match my other color schemes.
Stars: ✭ 38 (+137.5%)
Mutual labels:  color-scheme
vim-lighthaus
A Lighthaus theme for (n)vim, vim-airline and lightline
Stars: ✭ 33 (+106.25%)
Mutual labels:  color-scheme
SwiftColorWheel
Delightful color picker wheel for iOS in Swift.
Stars: ✭ 37 (+131.25%)
Mutual labels:  color-scheme
kcm-colorful
Make your KDE Plasma colorful.
Stars: ✭ 126 (+687.5%)
Mutual labels:  color-scheme
sabuni
Light Colorscheme for IntelliJ IDEA
Stars: ✭ 14 (-12.5%)
Mutual labels:  color-scheme
themeX
The ultimate UNIVERSAL syntax color theme generator that let's you build your color scheme in just one file and compile for a wide range of different editors.
Stars: ✭ 26 (+62.5%)
Mutual labels:  color-scheme
react-scroll-trigger
📜 React component that monitors scroll events to trigger callbacks when it enters, exits and progresses through the viewport. All callback include the progress and velocity of the scrolling, in the event you want to manipulate stuff based on those values.
Stars: ✭ 126 (+687.5%)
Mutual labels:  viewport
QtCreator-Color-Schemes
Color schemes for the QtCreator text editor
Stars: ✭ 64 (+300%)
Mutual labels:  color-scheme
nuxt-viewport
🌈 Define custom viewports for your Nuxt project
Stars: ✭ 55 (+243.75%)
Mutual labels:  viewport
etran
Erlang Parse Transforms Including Fold (MapReduce) comprehension, Elixir-like Pipeline, and default function arguments
Stars: ✭ 19 (+18.75%)
Mutual labels:  fold
plug-blockchain
The official plug node
Stars: ✭ 16 (+0%)
Mutual labels:  plug
vim-colors-sketching
A minimal light colorscheme for Vim/Neovim
Stars: ✭ 21 (+31.25%)
Mutual labels:  color-scheme
awesome-nord
This repository contains community-created ports and themes of this color palette for all our beloved applications.
Stars: ✭ 34 (+112.5%)
Mutual labels:  color-scheme
SwiftTheming
A powerful lightweight theme 🎨 manager for SwiftUI
Stars: ✭ 38 (+137.5%)
Mutual labels:  color-scheme
onscroll-effect
A tiny JavaScript library to enable CSS animations when user scrolls.
Stars: ✭ 35 (+118.75%)
Mutual labels:  viewport
tvthemes
ggplot2 themes and palettes based on your favorite TV shows
Stars: ✭ 120 (+650%)
Mutual labels:  color-scheme
kosmikoa.nvim
A dark color scheme for Neovim with support for LSP, Treesitter. This mirror is deprecated. Use the repo at https://sr.ht/~novakane/kosmikoa.nvim/
Stars: ✭ 23 (+43.75%)
Mutual labels:  color-scheme

taeseung_vimrc

Installation

Clone with GIT

Default version

cd ~/
git clone git://github.com/taeseunglee/taeseung_vimrc.git .vim
ln -s ~/.vim/vimrc ~/.vimrc
vim -c ":PlugInstall" -c ":q" -c ":q"

GNU-c style version

cd ~/
git clone -b gnu-c git://github.com/taeseunglee/taeseung_vimrc.git .vim
ln -s ~/.vim/vimrc ~/.vimrc
vim -c ":PlugInstall" -c ":q" -c ":q"

Features

Leader Key

The Leader key is bound to Space

Switching between files (Buffers)

  • Use Ctrl h Ctrl l to move between open files
  • Ctrl Left Ctrl Right also works for switching between files

Syntastic (Syntax check)

Syntastic Mode Map

Currently, syntastic is passive mode for all files. If you want to apply syntastic to some languages from the beginning of vim, you add languages to active_filetypes in vimrc. For example,

let g:syntastic_mode_map = {
    \ "mode": "passive",
    \ "active_filetypes": ["c", "cpp", "perl"],
    \ "passive_filetypes": [] }

Toggle Syntastic Mode

Currently, syntastic is passive mode. So if you want to use syntastic, you must toggle the Syntastic Mode(:SyntasticToggleMode).
If you want to toggle the Syntastic Mode, i.e. you want to change active to passive mode or passive to active mode,
press ctrl+y

Plug Command

Command Description
PlugInstall [name ...] [#threads] Install plugins
PlugUpdate [name ...] [#threads] Install or update plugins
PlugClean[!] Remove unused directories (bang version will clean without prompt)
PlugUpgrade Upgrade vim-plug itself
PlugStatus Check the status of plugins
PlugDiff Examine changes from the previous update and the pending changes
PlugSnapshot[!] [output path] Generate script for restoring the current snapshot of the plugins

Code Fold (Informations about folding commands)

Command Description
zi switch folding on or off
za toggle current fold open/closed
zc close current fold
zr decrease the foldlevel
zR open all folds
zm increase the foldlevel
zM close all folds
zv expand folds to reveal cursor

Viewports (Windows/Splits)

  • Use <Leader>h <Leader>j <Leader>k <Leader>l to navigate between viewports

File Browser (NERDTree)

  • Use <C-n> to toggle the file browser

Themes (ColorSchemes)

There is a very large collection of colorschemes in this repository. Many of them can be seen here. Set the colorscheme using :colorscheme NAME.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].