Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbuhr committed Mar 6, 2025
1 parent 861cac2 commit c595a3e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
1 change: 1 addition & 0 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ require 'config.redir'

vim.cmd.colorscheme 'rusty'
vim.api.nvim_set_hl(0, 'TermCursor', { fg = '#A6E3A1', bg = '#A6E3A1' })
vim.api.nvim_set_hl(0, 'WinSeparator', { fg = 'dimgray', bg = '' })
5 changes: 4 additions & 1 deletion lua/plugins/common.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@ return {
{ 'nvim-lua/plenary.nvim' },
{
"folke/snacks.nvim",
dev = true,
priority = 1000,
lazy = false,
opts = {
styles = {},
bigfile = { notify = false },
quickfile = {},
picker = {},
picker = {
-- ui_select = false, -- replace `vim.ui.select` with the snacks picker
},
indent = {}
},
},
Expand Down
8 changes: 1 addition & 7 deletions lua/plugins/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,11 @@ return {
{
'nvim-telescope/telescope.nvim',
dependencies = {
{ 'nvim-telescope/telescope-ui-select.nvim' },
{ 'nvim-telescope/telescope-fzf-native.nvim', build = 'make' },
{ 'nvim-telescope/telescope-dap.nvim' },
{
'jmbuhr/telescope-zotero.nvim',
enabled = true,
dev = false,
dev = true,
dependencies = {
{ 'kkharji/sqlite.lua' },
},
Expand Down Expand Up @@ -152,9 +150,6 @@ return {
},
},
extensions = {
['ui-select'] = {
require('telescope.themes').get_dropdown(),
},
fzf = {
fuzzy = true, -- false will only do exact matching
override_generic_sorter = true, -- override the generic sorter
Expand All @@ -164,7 +159,6 @@ return {
},
}
telescope.load_extension 'fzf'
telescope.load_extension 'ui-select'
telescope.load_extension 'dap'
telescope.load_extension 'zotero'
end,
Expand Down

0 comments on commit c595a3e

Please sign in to comment.