You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I like the plugin very much. Thanks alot for creating!
Reasons to do:
A pure lua profile would decrease startup time.
The lua startup profiler would be more correct or simpler to get correct with this change. Otherwise one gets more wrong results.
Try to be consistent as to use functionality of lua, if possible.
Having a function to initialize makes separating things for user-specific settings while getting updates much easier (user may implement a different function to customize plugin).
ifvim.g.loaded_galaxyline==nil--let s:save_cpo = &cpo --is there any way to make this plugin local?--set cpo&vim --is there any way to make this plugin local?ifvim.fn.has('nvim') ==0then--echohl Error--echom "Sorry this plugin only works with versions of neovim that support lua"--echohl clear--finishendvim.g.loaded_galaxyline=1require('galaxyline').galaxyline_augroup()
--let &cpo = s:save_cpo --is there any way to make this plugin local?--unlet s:save_cpo --is there any way to make this plugin local?end
The text was updated successfully, but these errors were encountered:
I like the plugin very much. Thanks alot for creating!
Reasons to do:
Another related reason (bad practice/historical reasons): nvim-treesitter/module-template#1
Relevant content for change:
https://github.com/nanotee/nvim-lua-guide#using-meta-accessors-1
missing fixes: https://github.com/nanotee/nvim-lua-guide/#managing-vim-internal-variables
and the echo stuff
The text was updated successfully, but these errors were encountered: