2021-09-20 11:46:38 +00:00
|
|
|
-- Copyright (c) 2020-2021 shadmansaleh
|
|
|
|
-- MIT license, see LICENSE for more details.
|
|
|
|
|
2021-10-13 15:53:13 +00:00
|
|
|
if os.getenv 'TEST_COV' then
|
|
|
|
require 'luacov'
|
2021-10-13 15:51:19 +00:00
|
|
|
end
|
2021-05-05 18:04:16 +00:00
|
|
|
-- load lualine and plenary
|
2021-10-13 15:51:19 +00:00
|
|
|
vim.cmd [[
|
2021-11-22 13:40:18 +00:00
|
|
|
set noswapfile
|
2021-05-05 18:04:16 +00:00
|
|
|
set rtp+=.
|
|
|
|
set rtp+=../plenary.nvim
|
2021-11-13 14:01:01 +00:00
|
|
|
set rtp+=../nvim-web-devicons/
|
2021-10-13 15:51:19 +00:00
|
|
|
runtime plugin/plenary.vim
|
|
|
|
]]
|