parent
5667176fe4
commit
da7de934d2
@ -1,3 +1,3 @@
|
||||
require('settings')
|
||||
require('maps')
|
||||
require('plug')
|
||||
require('paq')
|
||||
|
@ -0,0 +1,38 @@
|
||||
require('paq') {
|
||||
'savq/paq-nvim',
|
||||
|
||||
'mhinz/vim-signify',
|
||||
'tpope/vim-commentary',
|
||||
'tpope/vim-fugitive',
|
||||
'tpope/vim-rsi',
|
||||
'tpope/vim-vinegar',
|
||||
'hoob3rt/lualine.nvim',
|
||||
'w0rp/ale',
|
||||
|
||||
'lifepillar/vim-gruvbox8',
|
||||
'lifepillar/vim-solarized8',
|
||||
'NLKNguyen/papercolor-theme'
|
||||
}
|
||||
|
||||
require('lualine').setup{
|
||||
options = {
|
||||
icons_enabled = false,
|
||||
section_separators = { left = '', right = ''},
|
||||
component_separators = { leflt = '', right = ''}
|
||||
}
|
||||
}
|
||||
|
||||
vim.g.vimwiki_list = {{path='$HOME/vimwiki/', syntax='markdown', ext='.md'}}
|
||||
vim.g.PaperColor_Theme_Options = {
|
||||
theme = {
|
||||
["default.dark"] = { allow_bold = 1, allow_italic = 1 },
|
||||
["default.light"] = { allow_bold = 1, allow_italic = 1 }
|
||||
}
|
||||
}
|
||||
|
||||
if not vim.env.TERM:match('linux') then
|
||||
vim.o.bg = 'light'
|
||||
vim.o.termguicolors = false
|
||||
vim.g.gruvbox_filetype_hi_groups = 1
|
||||
vim.cmd('colorscheme PaperColor')
|
||||
end
|
@ -1,28 +0,0 @@
|
||||
require('paq') {
|
||||
'savq/paq-nvim',
|
||||
|
||||
'lifepillar/vim-gruvbox8',
|
||||
'mhinz/vim-signify',
|
||||
'tpope/vim-commentary',
|
||||
'tpope/vim-fugitive',
|
||||
'tpope/vim-rsi',
|
||||
'tpope/vim-vinegar',
|
||||
'hoob3rt/lualine.nvim',
|
||||
'w0rp/ale'
|
||||
}
|
||||
|
||||
require('lualine').setup{
|
||||
options = {
|
||||
section_separators = {'', ''},
|
||||
component_separators = {'', ''},
|
||||
icons_enabled = false
|
||||
}
|
||||
}
|
||||
|
||||
vim.g.vimwiki_list = {{path='$HOME/vimwiki/', syntax='markdown', ext='.md'}}
|
||||
|
||||
if not vim.env.TERM:match('linux') then
|
||||
vim.o.termguicolors = true
|
||||
vim.g.gruvbox_filetype_hi_groups = 1
|
||||
vim.cmd('colorscheme gruvbox8')
|
||||
end
|
Reference in new issue