Plugged in the theme
Signed-off-by: Valentin Popov <valentin@popov.link>
This commit is contained in:
parent
de87a959a9
commit
865c863f79
2
init.vim
2
init.vim
@ -1,5 +1,5 @@
|
|||||||
" Connecting the plugin manager
|
" Connecting the plugin manager
|
||||||
lua require('plugins')
|
lua require('init')
|
||||||
|
|
||||||
augroup packer_user_config
|
augroup packer_user_config
|
||||||
autocmd!
|
autocmd!
|
||||||
|
2
lua/init.lua
Normal file
2
lua/init.lua
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
require('plugins')
|
||||||
|
require('theme')
|
@ -4,5 +4,7 @@
|
|||||||
vim.cmd [[packadd packer.nvim]]
|
vim.cmd [[packadd packer.nvim]]
|
||||||
|
|
||||||
return require('packer').startup(function(use)
|
return require('packer').startup(function(use)
|
||||||
use 'wbthomason/packer.nvim'
|
use { 'wbthomason/packer.nvim', opt = true }
|
||||||
|
|
||||||
|
use { 'tanvirtin/monokai.nvim' }
|
||||||
end)
|
end)
|
3
lua/theme.lua
Normal file
3
lua/theme.lua
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
require('monokai').setup {
|
||||||
|
palette = require('monokai').pro
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user