:feat: add fzf and indent blankline
This commit is contained in:
@@ -0,0 +1 @@
|
||||
vim.keymap.set('n', '<leader>f', '<cmd>FzfLua<cr>')
|
||||
@@ -6,3 +6,4 @@ require('config.theme')
|
||||
require('config.neogit')
|
||||
require('config.oil')
|
||||
require('config.autopairs')
|
||||
require('config.fzf')
|
||||
|
||||
@@ -4,4 +4,6 @@ vim.pack.add({
|
||||
{ src = "https://github.com/stevearc/oil.nvim", name = "oil.nvim" },
|
||||
{ src = "https://github.com/nvim-tree/nvim-web-devicons", name = "web-dev-devicons" },
|
||||
{ src = "https://github.com/windwp/nvim-autopairs", name = "nvim-autopairs" },
|
||||
{ src = "https://github.com/ibhagwan/fzf-lua", name = "fzf-lua" },
|
||||
{ src = "https://github.com/lukas-reineke/indent-blankline.nvim", name = "indent-blankline.nvim" },
|
||||
})
|
||||
|
||||
@@ -4,6 +4,18 @@
|
||||
"rev": "e068ab5f8261f23f6f71ffd8791ae40315b77b9c",
|
||||
"src": "https://github.com/catppuccin/nvim"
|
||||
},
|
||||
"fzf'lua": {
|
||||
"rev": "39da6060d53659acf3ec118200bc48721b29b8fd",
|
||||
"src": "https://github.com/ibhagwan/fzf-lua"
|
||||
},
|
||||
"fzf-lua": {
|
||||
"rev": "39da6060d53659acf3ec118200bc48721b29b8fd",
|
||||
"src": "https://github.com/ibhagwan/fzf-lua"
|
||||
},
|
||||
"indent-blankline.nvim": {
|
||||
"rev": "d28a3f70721c79e3c5f6693057ae929f3d9c0a03",
|
||||
"src": "https://github.com/lukas-reineke/indent-blankline.nvim"
|
||||
},
|
||||
"neogit": {
|
||||
"rev": "43ea1a0854052e583f647e0b35879f0158a70a78",
|
||||
"src": "https://github.com/neogitorg/neogit"
|
||||
|
||||
+8
-7
@@ -6,23 +6,23 @@ local Plug = vim.fn['plug#']
|
||||
vim.call('plug#begin', '~/.local/share/nvim/plugged')
|
||||
|
||||
Plug 'lukas-reineke/indent-blankline.nvim'
|
||||
Plug 'lervag/vimtex'
|
||||
-- Plug 'lervag/vimtex'
|
||||
|
||||
-- Colorscheme
|
||||
Plug 'sainnhe/sonokai'
|
||||
Plug 'catppuccin/nvim' -- ok
|
||||
|
||||
Plug 'tpope/vim-surround'
|
||||
Plug 'tpope/vim-surround' -- ok
|
||||
|
||||
-- Git
|
||||
-- Plug 'NeogitOrg/neogit'
|
||||
-- Plug 'sindrets/diffview.nvim'
|
||||
-- Plug 'lewis6991/gitsigns.nvim'
|
||||
|
||||
Plug 'ibhagwan/fzf-lua'
|
||||
Plug 'ibhagwan/fzf-lua' -- ok
|
||||
|
||||
Plug 'nvim-neo-tree/neo-tree.nvim'
|
||||
Plug 'MunifTanjim/nui.nvim'
|
||||
-- Plug 'nvim-neo-tree/neo-tree.nvim'
|
||||
-- Plug 'MunifTanjim/nui.nvim'
|
||||
|
||||
-- Fs tree + deps
|
||||
Plug 'nvim-lua/plenary.nvim'
|
||||
@@ -51,9 +51,10 @@ Plug 'rafamadriz/friendly-snippets'
|
||||
Plug('nvim-treesitter/nvim-treesitter', {['do'] = ':TSUpdate'})
|
||||
Plug('nvim-telescope/telescope-live-grep-args.nvim')
|
||||
|
||||
Plug 'windwp/nvim-autopairs'
|
||||
Plug 'windwp/nvim-autopairs' -- ok
|
||||
|
||||
Plug 'windwp/nvim-ts-autotag' -- need treesitter
|
||||
|
||||
Plug 'windwp/nvim-ts-autotag'
|
||||
-- EditorConfig
|
||||
Plug 'editorconfig/editorconfig-vim'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user