diff --git a/README.md b/README.md index 3e51166..78aac09 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,7 @@ with Treesitter : - neoformat for prettifying / formatting code - packer.nvim as package manager - indent-blankline.Nvim for indentlines +- smooth scrolling # Guides to migrate your nvim configs to init.lua - @@ -142,6 +143,7 @@ I'd install it first and add its setup line : - leader + f h opens up a manpage like thing but for all vim related things , with telescope - leader + f m formats or beautifies the code in current window via neoformat (currently only html ,css , js can be formatted . To be able to use this keybind you need to install the formatter locally for your language , in my case prettier was required only so I installed it. check this https://github.com/sbdchd/neoformat). +- ``, ``, ``, ``, `` and `` : Smooth scrolling for window movement commands. # TODO diff --git a/lua/pluginsList/lua.lua b/lua/pluginsList/lua.lua index a03c26c..a4f894d 100644 --- a/lua/pluginsList/lua.lua +++ b/lua/pluginsList/lua.lua @@ -5,6 +5,7 @@ return require("packer").startup( function() use {"wbthomason/packer.nvim", opt = true} use {"lukas-reineke/indent-blankline.nvim", branch = "lua"} + use "kyazdani42/nvim-web-devicons" use "kyazdani42/nvim-tree.lua" use "nvim-lua/plenary.nvim" @@ -26,5 +27,6 @@ return require("packer").startup( use "nvim-telescope/telescope.nvim" use "nvim-telescope/telescope-media-files.nvim" use "nvim-lua/popup.nvim" + use "karb94/neoscroll.nvim" end )