diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-03-23 22:37:45 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-03-23 22:37:45 +0200 |
| commit | 8c36cd95d4aa08e992b69a4cac8682632b61abf1 (patch) | |
| tree | 392b076a43bdb6a999b948b82487ba21e5ac4dc2 | |
| parent | 592e50d56ab7aa022b1b4a78fc9907f3f612ef1e (diff) | |
| download | dotfiles-8c36cd95d4aa08e992b69a4cac8682632b61abf1.tar.gz dotfiles-8c36cd95d4aa08e992b69a4cac8682632b61abf1.zip | |
Info on install neovim nightly
| -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") |
