Dotfiles/nvim/init.lua.old

16 lines
408 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('/home/themiro/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()