From cfd23901a948fc7f3759f84169def723f7f64ff7 Mon Sep 17 00:00:00 2001 From: jdhao Date: Tue, 6 Jul 2021 22:43:36 +0800 Subject: [PATCH] Update firenvim-related settings --- core/plugins.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/plugins.vim b/core/plugins.vim index 4568789..0377b74 100644 --- a/core/plugins.vim +++ b/core/plugins.vim @@ -1,6 +1,8 @@ scriptencoding utf-8 " Plugin installation +let g:plugin_home = printf('%s/site/pack/packer/', stdpath('data')) + lua require 'plugins' "{ Plugin settings @@ -524,8 +526,6 @@ if exists('g:started_by_firenvim') && g:started_by_firenvim if g:is_mac set guifont=Iosevka\ Nerd\ Font:h18 endif - " general options - set laststatus=0 nonumber noruler noshowcmd " general config for firenvim let g:firenvim_config = { @@ -544,7 +544,7 @@ if exists('g:started_by_firenvim') && g:started_by_firenvim augroup firenvim autocmd! - autocmd BufEnter *.txt setlocal filetype=markdown + autocmd BufEnter *.txt setlocal filetype=markdown laststatus=0 nonumber noshowcmd noruler showtabline=1 augroup END endif