diff --git a/lua/keybindings.lua b/lua/keybindings.lua index cca4763..1aaff72 100644 --- a/lua/keybindings.lua +++ b/lua/keybindings.lua @@ -2,6 +2,7 @@ local fzf = require('fzf-lua') vim.keymap.set('n', 'b', fzf.buffers, { desc = "Buffers" }) vim.keymap.set('n', 'fG', fzf.grep_cword, { desc = "Grep word under cursor" }) +vim.keymap.set('n', 'fT', fzf.treesitter, { desc = "Treesitter symbols" }) vim.keymap.set('n', 'fc', fzf.commands, { desc = "Commands" }) vim.keymap.set('n', 'ff', fzf.files, { desc = "Find file" }) vim.keymap.set('n', 'fg', fzf.live_grep, { desc = "Grep" }) diff --git a/lua/plugins.lua b/lua/plugins.lua index 869ec0a..44ca5f3 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -86,7 +86,7 @@ require("lazy").setup({ require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', - org_todo_keywords = {'TODO(t)', 'STARTED(s)', 'PLANNED(p)', '|', 'DONE(d)', 'UNPLANNED(u)' }, + org_todo_keywords = { 'TODO(t)', 'STARTED(s)', 'PLANNED(p)', '|', 'DONE(d)', 'UNPLANNED(u)' }, }) -- NOTE: If you are using nvim-treesitter with ~ensure_installed = "all"~ option @@ -235,13 +235,19 @@ require("lazy").setup({ tabline = {}, winbar = { lualine_a = { - { breadcrumb, - color = { bg = '#101010', fg = '#568200' }, + { + breadcrumb, + color = { bg = '#2a2a2a', fg = '#cfcfcf' }, }, }, }, inactive_winbar = { - lualine_a = { breadcrumb }, + lualine_a = { + { breadcrumb, + color = { bg = '#101010', fg = '#999999' }, + draw_empty = true + } + }, }, extensions = {} }