commit
93246a27c8
|
@ -30,6 +30,10 @@ A fuzzy file finder, picker, sorter, previewer and much more:
|
|||
adds indentline :
|
||||
<kbd> <img src = "https://raw.githubusercontent.com/siduck76/dotfiles/master/rice%20flex/blanklineNvim.png"></kbd>
|
||||
|
||||
using indenLine plugin on left and blanklineNvim on right
|
||||
|
||||
<kbd> <img src = "https://raw.githubusercontent.com/siduck76/dotfiles/master/rice%20flex/blanklineVSindentline.png"></kbd>
|
||||
|
||||
### galaxyline -
|
||||
|
||||
fastest statusline plugin I've used so far:
|
||||
|
@ -79,7 +83,8 @@ 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
|
||||
- smooth scrolling
|
||||
|
||||
# Guides to migrate your nvim configs to init.lua -
|
||||
|
||||
|
@ -138,6 +143,7 @@ I'd install it first and add its setup line :
|
|||
- leader + <kbd> f </kbd> <kbd> h </kbd> opens up a manpage like thing but for all vim related things , with telescope
|
||||
- leader + <kbd> f </kbd> <kbd> m </kbd> 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 <a> https://github.com/sbdchd/neoformat</a>).
|
||||
- `<C-u>`, `<C-d>`, `<C-b>`, `<C-f>`, `<C-y>` and `<C-e>` : Smooth scrolling for window movement commands.
|
||||
|
||||
# TODO
|
||||
|
||||
|
|
|
@ -4,27 +4,29 @@ 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"
|
||||
use "karb94/neoscroll.nvim"
|
||||
end
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue