add lualine, telescope-fzf-native plugins
This commit is contained in:
parent
5784228883
commit
8a2dbdbb90
2 changed files with 26 additions and 0 deletions
12
lua/weeheavy/plugins/lualine.lua
Normal file
12
lua/weeheavy/plugins/lualine.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
-- status line like vim-airline
|
||||||
|
return {
|
||||||
|
"nvim-lualine/lualine.nvim",
|
||||||
|
opts = {
|
||||||
|
options = {
|
||||||
|
icons_enabled = true,
|
||||||
|
theme = 'auto',
|
||||||
|
component_separators = '⋮',
|
||||||
|
section_separators = { left = '', right = '' },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
14
lua/weeheavy/plugins/telescope-fzf-native.lua
Normal file
14
lua/weeheavy/plugins/telescope-fzf-native.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
--[[
|
||||||
|
Fuzzy finder
|
||||||
|
Docs: https://github.com/nvim-telescope/telescope-fzf-native.nvim
|
||||||
|
|
||||||
|
Performance depends on installation of ripgrep and fd (both available in Homebrew)
|
||||||
|
If you have huge amounts of files, consider adding some to `$HOME/.ignore`:
|
||||||
|
dotnet/
|
||||||
|
opt/miniconda3/
|
||||||
|
Library/
|
||||||
|
]]--
|
||||||
|
return {
|
||||||
|
"nvim-telescope/telescope-fzf-native.nvim",
|
||||||
|
build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build'
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue