Set default theme to gruvbox, leave others installed for now
This commit is contained in:
parent
012c0e90df
commit
a5f8ce6c09
2 changed files with 32 additions and 3 deletions
14
init.vim
14
init.vim
|
@ -5,7 +5,6 @@ Plug 'kyazdani42/nvim-web-devicons' " optional, for file icons
|
||||||
Plug 'kyazdani42/nvim-tree.lua'
|
Plug 'kyazdani42/nvim-tree.lua'
|
||||||
|
|
||||||
Plug 'scrooloose/nerdtree'
|
Plug 'scrooloose/nerdtree'
|
||||||
Plug 'dracula/vim'
|
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||||
Plug 'preservim/nerdcommenter'
|
Plug 'preservim/nerdcommenter'
|
||||||
Plug 'mhinz/vim-startify'
|
Plug 'mhinz/vim-startify'
|
||||||
|
@ -17,6 +16,10 @@ Plug 'vim-airline/vim-airline'
|
||||||
Plug 'vim-airline/vim-airline-themes'
|
Plug 'vim-airline/vim-airline-themes'
|
||||||
Plug 'honza/vim-snippets'
|
Plug 'honza/vim-snippets'
|
||||||
Plug 'itchyny/vim-cursorword'
|
Plug 'itchyny/vim-cursorword'
|
||||||
|
Plug 'sheerun/vim-polyglot'
|
||||||
|
Plug 'olimorris/onedarkpro.nvim'
|
||||||
|
Plug 'ellisonleao/gruvbox.nvim'
|
||||||
|
Plug 'dracula/vim'
|
||||||
|
|
||||||
"Fuzzy search by Telescope and its dependencies:
|
"Fuzzy search by Telescope and its dependencies:
|
||||||
Plug 'nvim-lua/plenary.nvim'
|
Plug 'nvim-lua/plenary.nvim'
|
||||||
|
@ -29,6 +32,8 @@ call plug#end()
|
||||||
" load lua file (empty for now)
|
" load lua file (empty for now)
|
||||||
lua require("general")
|
lua require("general")
|
||||||
|
|
||||||
|
"autocmd BufEnter *.sls :setlocal filetype=yaml
|
||||||
|
|
||||||
"inoremap: maps the key in insert mode
|
"inoremap: maps the key in insert mode
|
||||||
"nnoremap: maps the key in normal mode
|
"nnoremap: maps the key in normal mode
|
||||||
"vnoremap: maps the key in visual mode
|
"vnoremap: maps the key in visual mode
|
||||||
|
@ -47,9 +52,10 @@ vmap <C-_> <plug>NERDCommenterToggle
|
||||||
" show uncommited git changes in current part of the code
|
" show uncommited git changes in current part of the code
|
||||||
nnoremap <C-s> :CocCommand git.chunkInfo<CR>
|
nnoremap <C-s> :CocCommand git.chunkInfo<CR>
|
||||||
|
|
||||||
"plugin configuration
|
"theme configuration
|
||||||
syntax enable
|
syntax enable
|
||||||
colorscheme dracula
|
set termguicolors
|
||||||
|
colorscheme gruvbox
|
||||||
let g:airline_theme='dark'
|
let g:airline_theme='dark'
|
||||||
|
|
||||||
set splitright
|
set splitright
|
||||||
|
@ -137,6 +143,8 @@ else
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" general configs
|
" general configs
|
||||||
|
set modeline
|
||||||
|
let g:sls_use_jinja_syntax = 1
|
||||||
set encoding=UTF-8
|
set encoding=UTF-8
|
||||||
set showmatch " show matching
|
set showmatch " show matching
|
||||||
set ignorecase " case insensitive
|
set ignorecase " case insensitive
|
||||||
|
|
|
@ -15,3 +15,24 @@ require("nvim-tree").setup({
|
||||||
dotfiles = true,
|
dotfiles = true,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
--Gruvbox theme settings
|
||||||
|
-- setup must be called before loading the colorscheme
|
||||||
|
require("gruvbox").setup({
|
||||||
|
undercurl = true,
|
||||||
|
underline = true,
|
||||||
|
bold = true,
|
||||||
|
italic = false, -- default=true
|
||||||
|
strikethrough = true,
|
||||||
|
invert_selection = false,
|
||||||
|
invert_signs = false,
|
||||||
|
invert_tabline = false,
|
||||||
|
invert_intend_guides = false,
|
||||||
|
inverse = true, -- invert background for search, diffs, statuslines and errors
|
||||||
|
contrast = "hard", -- can be "hard", "soft" or empty string
|
||||||
|
palette_overrides = {},
|
||||||
|
overrides = {},
|
||||||
|
dim_inactive = true, -- default=false
|
||||||
|
transparent_mode = false,
|
||||||
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue