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