aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-03-23 22:37:45 +0200
committersrdusr <trevorgray@srdusr.com>2023-03-23 22:37:45 +0200
commit8c36cd95d4aa08e992b69a4cac8682632b61abf1 (patch)
tree392b076a43bdb6a999b948b82487ba21e5ac4dc2
parent592e50d56ab7aa022b1b4a78fc9907f3f612ef1e (diff)
downloaddotfiles-8c36cd95d4aa08e992b69a4cac8682632b61abf1.tar.gz
dotfiles-8c36cd95d4aa08e992b69a4cac8682632b61abf1.zip
Info on install neovim nightly
-rw-r--r--init.lua17
1 files changed, 15 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 28b7dd6..f431e37 100644
--- a/init.lua
+++ b/init.lua
@@ -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")