Merge pull request #1 from siduck76/main

merge
This commit is contained in:
Jeevan Shah 2021-03-31 03:49:32 -04:00 committed by GitHub
commit 93246a27c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 23 deletions

View File

@ -30,6 +30,10 @@ A fuzzy file finder, picker, sorter, previewer and much more:
adds indentline : adds indentline :
<kbd> <img src = "https://raw.githubusercontent.com/siduck76/dotfiles/master/rice%20flex/blanklineNvim.png"></kbd> <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 - ### galaxyline -
fastest statusline plugin I've used so far: fastest statusline plugin I've used so far:
@ -80,6 +84,7 @@ with Treesitter :
- neoformat for prettifying / formatting code - neoformat for prettifying / formatting code
- packer.nvim as package manager - 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 - # 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> 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 - 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>). (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 # TODO

View File

@ -4,27 +4,29 @@ local packer_exists = pcall(vim.cmd, [[packadd packer.nvim]])
return require("packer").startup( return require("packer").startup(
function() function()
use {"wbthomason/packer.nvim", opt = true} use {"wbthomason/packer.nvim", opt = true}
use {"kyazdani42/nvim-web-devicons"} use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
use {"kyazdani42/nvim-tree.lua"}
use {"nvim-lua/plenary.nvim"} use "kyazdani42/nvim-web-devicons"
use {"lewis6991/gitsigns.nvim"} use "kyazdani42/nvim-tree.lua"
use {"glepnir/galaxyline.nvim"} use "nvim-lua/plenary.nvim"
use {"akinsho/nvim-bufferline.lua"} use "lewis6991/gitsigns.nvim"
use {"907th/vim-auto-save"} use "glepnir/galaxyline.nvim"
use {"nvim-treesitter/nvim-treesitter"} use "akinsho/nvim-bufferline.lua"
use {"chriskempson/base16-vim"} use "907th/vim-auto-save"
use {"norcalli/nvim-colorizer.lua"} use "nvim-treesitter/nvim-treesitter"
use {"ryanoasis/vim-devicons"} use "chriskempson/base16-vim"
use {"sbdchd/neoformat"} use "norcalli/nvim-colorizer.lua"
use {"neovim/nvim-lspconfig"} use "ryanoasis/vim-devicons"
use {"hrsh7th/nvim-compe"} use "sbdchd/neoformat"
use {"windwp/nvim-autopairs"} use "neovim/nvim-lspconfig"
use {"alvan/vim-closetag"} use "hrsh7th/nvim-compe"
use {"tweekmonster/startuptime.vim"} use "windwp/nvim-autopairs"
use {"onsails/lspkind-nvim"} use "alvan/vim-closetag"
use {"nvim-telescope/telescope.nvim"} use "tweekmonster/startuptime.vim"
use {"nvim-telescope/telescope-media-files.nvim"} use "onsails/lspkind-nvim"
use {"nvim-lua/popup.nvim"} use "nvim-telescope/telescope.nvim"
use {"lukas-reineke/indent-blankline.nvim", branch = 'lua'} use "nvim-telescope/telescope-media-files.nvim"
use "nvim-lua/popup.nvim"
use "karb94/neoscroll.nvim"
end end
) )