From 70d1825611180a3985578a4498643759754edd17 Mon Sep 17 00:00:00 2001 From: cool-mist Date: Fri, 16 Feb 2024 15:23:46 +0530 Subject: [PATCH] Minor README fixes --- README.md | 19 ++++++++++--------- init.lua | 4 ++++ 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index ed80e3c..bf886a6 100644 --- a/README.md +++ b/README.md @@ -6,20 +6,21 @@ This uses Packer as the plugin manager. # Dependencies # -- neovim -- npm -- python -- python-pynvim -- pip -- go -- rust # Installation # -Tested on Arch. Should probably work on most linux distros. +## Prerequisites -On Arch WSL, you would need to retry by pressing `R` on the `:PackerSync` menu few times to install all the plugins, the first time around. Check [this issue](https://github.com/wbthomason/packer.nvim/issues/456) +- Tested on Arch. Should probably work on most linux distros. +- On Arch WSL, you would need to retry by pressing `R` on the `:PackerSync` menu few times to install all the plugins, the first time around. Check [this issue](https://github.com/wbthomason/packer.nvim/issues/456) +- `neovim` +- `npm` +- `python` +- `python-pynvim` +- `pip` +- `go` +- `rust` ``` make install diff --git a/init.lua b/init.lua index 7618491..d0e44d9 100644 --- a/init.lua +++ b/init.lua @@ -83,6 +83,7 @@ packer.startup({function(u) u 'preservim/vim-markdown' u 'vim-pandoc/vim-pandoc-syntax' u ({ "iamcco/markdown-preview.nvim", run = "cd app && npm install", setup = function() V.g.mkdp_filetypes = { "markdown.pandoc" } end, ft = { "markdown" }, }) + -- File tree, telescope u 'nvim-lua/plenary.nvim' u 'nvim-tree/nvim-web-devicons' @@ -203,6 +204,9 @@ V.cmd([[ augroup END ]]) +local glow = require('glow') +glow.setup() + -------------------------- ---- Config Section ----- --- x --- Keybindings ----