From 6c598e7017aa44c95b074c73085ea992109e373e Mon Sep 17 00:00:00 2001 From: siduck76 Date: Wed, 31 Mar 2021 06:53:59 +0530 Subject: [PATCH 1/3] indentLine and blankline comparison --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f0cc80..3e51166 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,10 @@ A fuzzy file finder, picker, sorter, previewer and much more: adds indentline : +using indenLine plugin on left and blanklineNvim on right + + + ### galaxyline - fastest statusline plugin I've used so far: @@ -79,7 +83,7 @@ with Treesitter : - nvim-autopairs , for autolosing braces and stuffs - neoformat for prettifying / formatting code - packer.nvim as package manager -- indent-blankline.Nvim for indentlines +- indent-blankline.Nvim for indentlines # Guides to migrate your nvim configs to init.lua - From e16f523fcc5aae90f57ef5caf0e485ecce69c5d4 Mon Sep 17 00:00:00 2001 From: siduck76 Date: Wed, 31 Mar 2021 07:21:27 +0530 Subject: [PATCH 2/3] clean up --- lua/pluginsList/lua.lua | 44 ++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/lua/pluginsList/lua.lua b/lua/pluginsList/lua.lua index 548b106..a03c26c 100644 --- a/lua/pluginsList/lua.lua +++ b/lua/pluginsList/lua.lua @@ -4,27 +4,27 @@ local packer_exists = pcall(vim.cmd, [[packadd packer.nvim]]) return require("packer").startup( function() use {"wbthomason/packer.nvim", opt = true} - use {"kyazdani42/nvim-web-devicons"} - use {"kyazdani42/nvim-tree.lua"} - use {"nvim-lua/plenary.nvim"} - use {"lewis6991/gitsigns.nvim"} - use {"glepnir/galaxyline.nvim"} - use {"akinsho/nvim-bufferline.lua"} - use {"907th/vim-auto-save"} - use {"nvim-treesitter/nvim-treesitter"} - use {"chriskempson/base16-vim"} - use {"norcalli/nvim-colorizer.lua"} - use {"ryanoasis/vim-devicons"} - use {"sbdchd/neoformat"} - use {"neovim/nvim-lspconfig"} - use {"hrsh7th/nvim-compe"} - use {"windwp/nvim-autopairs"} - use {"alvan/vim-closetag"} - use {"tweekmonster/startuptime.vim"} - use {"onsails/lspkind-nvim"} - use {"nvim-telescope/telescope.nvim"} - use {"nvim-telescope/telescope-media-files.nvim"} - use {"nvim-lua/popup.nvim"} - use {"lukas-reineke/indent-blankline.nvim", branch = 'lua'} + use {"lukas-reineke/indent-blankline.nvim", branch = "lua"} + use "kyazdani42/nvim-web-devicons" + use "kyazdani42/nvim-tree.lua" + use "nvim-lua/plenary.nvim" + use "lewis6991/gitsigns.nvim" + use "glepnir/galaxyline.nvim" + use "akinsho/nvim-bufferline.lua" + use "907th/vim-auto-save" + use "nvim-treesitter/nvim-treesitter" + use "chriskempson/base16-vim" + use "norcalli/nvim-colorizer.lua" + use "ryanoasis/vim-devicons" + use "sbdchd/neoformat" + use "neovim/nvim-lspconfig" + use "hrsh7th/nvim-compe" + use "windwp/nvim-autopairs" + use "alvan/vim-closetag" + use "tweekmonster/startuptime.vim" + use "onsails/lspkind-nvim" + use "nvim-telescope/telescope.nvim" + use "nvim-telescope/telescope-media-files.nvim" + use "nvim-lua/popup.nvim" end ) From e81499f291a17e4e80dd0b976618f751911255ea Mon Sep 17 00:00:00 2001 From: siduck76 Date: Wed, 31 Mar 2021 07:30:33 +0530 Subject: [PATCH 3/3] smooth scrolling --- README.md | 2 ++ lua/pluginsList/lua.lua | 2 ++ 2 files changed, 4 insertions(+) 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 )