mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
13 lines
268 B
Lua
13 lines
268 B
Lua
local vim = require("vim")
|
|
local cmd = vim.cmd
|
|
|
|
cmd[[Plug 'tomasiser/vim-code-dark']]
|
|
|
|
-- Set vim-code-dark as colortheme after plugin loading was finished
|
|
cmd[[
|
|
augroup VimCodeDark
|
|
autocmd!
|
|
autocmd User PlugLoaded ++nested colorscheme codedark
|
|
augroup end
|
|
]]
|