aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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")