diff options
| -rw-r--r-- | init.lua | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -26,11 +26,24 @@ -- -------------------------------------------------------------------------- -- +-- ================================== -- +-- == Install neovim-nightly == -- +-- ================================== -- + +-- Download nvim-linux64.tar.gz: +--$ curl -L -o nvim-linux64.tar.gz https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz +-- Extract: +--$ tar xzvf nvim-linux64.tar.gz +-- Run: +--$ ./nvim-linux64/bin/nvim + +-- ---------------------------------- -- + -- Initialize config with this one liner in the terminal ---nvim --headless -c 'call mkdir(stdpath("config"), "p") | exe "edit" stdpath("config") . "/init.lua" | write | quit' +--$ nvim --headless -c 'call mkdir(stdpath("config"), "p") | exe "edit" stdpath("config") . "/init.lua" | write | quit' -- Command to see startup time ---nvim --startuptime startup.log -c exit && tail -100 startup.log +--$ nvim --startuptime startup.log -c exit && tail -100 startup.log -- Load impatient (Faster loading times) local impatient_ok, impatient = pcall(require, "impatient") |
