Dotfiles/nvim.old/init.lua.old

16 lines
415 B
Lua

local vim = vim
local Plug = vim.fn['plug#']
vim.call('plug#begin')
Plug('junegunn/goyo.vim')
Plug('rktjmp/lush.nvim')
Plug('tpope/vim-sensible')
Plug(vim.fn.expand('$HOME/Dotfiles/nvim/theme/cyberqueer.nvim'))
vim.call('plug#end')
-- Color schemes should be loaded after plug#end().
-- We prepend it with 'silent!' to ignore errors when it's not yet installed.
vim.cmd('silent! colorscheme seoul256')
vim.cmd()