Change vim colorscheme to iceberg
This commit is contained in:
parent
0b671e0769
commit
295d7a5fef
12
vim/.vimrc
12
vim/.vimrc
|
@ -2,9 +2,6 @@
|
||||||
set number
|
set number
|
||||||
set ttyfast
|
set ttyfast
|
||||||
set encoding=utf8
|
set encoding=utf8
|
||||||
""Colors
|
|
||||||
colorscheme synthwave
|
|
||||||
set t_Co=256
|
|
||||||
""Misc
|
""Misc
|
||||||
set clipboard=unnamedplus
|
set clipboard=unnamedplus
|
||||||
set nofoldenable
|
set nofoldenable
|
||||||
|
@ -15,8 +12,10 @@ set shiftwidth=2
|
||||||
""Don't litter swp files everywhere
|
""Don't litter swp files everywhere
|
||||||
set backupdir=~/.cache
|
set backupdir=~/.cache
|
||||||
set directory=~/.cache
|
set directory=~/.cache
|
||||||
" Ignore case when searching
|
""Ignore case when searching
|
||||||
set ignorecase
|
set ignorecase
|
||||||
|
""Resize line number colum
|
||||||
|
set numberwidth=2
|
||||||
""Keybindings
|
""Keybindings
|
||||||
set pastetoggle=<F2>
|
set pastetoggle=<F2>
|
||||||
let mapleader="\<Space>"
|
let mapleader="\<Space>"
|
||||||
|
@ -38,7 +37,12 @@ Plug 'plasticboy/vim-markdown', { 'for': 'markdown' }
|
||||||
Plug 'junegunn/goyo.vim', { 'on': 'Goyo' }
|
Plug 'junegunn/goyo.vim', { 'on': 'Goyo' }
|
||||||
Plug 'SirVer/ultisnips', { 'for': 'markdown' }
|
Plug 'SirVer/ultisnips', { 'for': 'markdown' }
|
||||||
Plug 'Raimondi/delimitMate'
|
Plug 'Raimondi/delimitMate'
|
||||||
|
Plug 'cocopon/iceberg.vim'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
""Colors
|
||||||
|
colorscheme iceberg
|
||||||
|
"set t_Co=256
|
||||||
|
set termguicolors
|
||||||
""Quitting whether Goyo is active or not
|
""Quitting whether Goyo is active or not
|
||||||
function! g:Goyo_before()
|
function! g:Goyo_before()
|
||||||
let b:quitting = 0
|
let b:quitting = 0
|
||||||
|
|
Loading…
Reference in New Issue