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