diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2022-08-14 20:50:21 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2022-08-14 20:50:21 +0200 |
| commit | dabec265b3eef63a96e14392e3918fcc3b154585 (patch) | |
| tree | d72f6bbf3b34a0926badd9d37e5190cd923f52a6 | |
| parent | 1157a7ff99dae87d783dbac2a3b06b48d3c0b091 (diff) | |
| download | dotfiles-dabec265b3eef63a96e14392e3918fcc3b154585.tar.gz dotfiles-dabec265b3eef63a96e14392e3918fcc3b154585.tar.bz2 dotfiles-dabec265b3eef63a96e14392e3918fcc3b154585.zip | |
Updated neovim telescope to also list untracked git files
| -rw-r--r-- | config/nvim/lua/telescope-config.lua | 2 | ||||
| -rw-r--r-- | config/tmux/tmux.conf | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/config/nvim/lua/telescope-config.lua b/config/nvim/lua/telescope-config.lua index fbb0c79..5f3fac4 100644 --- a/config/nvim/lua/telescope-config.lua +++ b/config/nvim/lua/telescope-config.lua @@ -2,7 +2,7 @@ local M = {} M.project_files = function() - local opts = {} -- define here if you want to define something + local opts = { show_untracked = true } local ok = pcall(require"telescope.builtin".git_files, opts) if not ok then require"telescope.builtin".find_files(opts) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index afaff80..eb20984 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -32,8 +32,8 @@ set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'egel/tmux-gruvbox' set -g @tmux-gruvbox 'dark' # set -g @plugin 'arcticicestudio/nord-tmux' -# set -g @plugin 'tmux-plugins/tmux-prefix-highlight' -# set -g @plugin 'wfxr/tmux-fzf-url' +set -g @plugin 'tmux-plugins/tmux-prefix-highlight' +set -g @plugin 'wfxr/tmux-fzf-url' # show copy/sync mode with tmux-prefix-highlight set -g @prefix_highlight_show_copy_mode 'on' |
