Last active
July 20, 2022 14:13
-
-
Save o3bvv/da43b365ec47a49e89ffc2127f79e217 to your computer and use it in GitHub Desktop.
vim config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax enable | |
set background=dark | |
colorscheme solarized | |
set tabstop=2 | |
set softtabstop=2 | |
set expandtab | |
set number | |
set showcmd | |
set cursorline | |
filetype indent on | |
set showmatch | |
set ruler | |
set laststatus=2 | |
set mouse=a | |
set backspace=indent,eol,start | |
set clipboard=unnamedplus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
md ~/.vim/bundle | |
md ~/.vim/colors | |
cd ~/.vim/bundle | |
git clone https://github.com/altercation/vim-colors-solarized.git | |
cp ~/.vim/bundle/vim-colors-solarized/colors/solarized.vim ~/.vim/colors/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment