Compare commits

...

2 Commits

Author SHA1 Message Date
Moritz Böhme 67271f3ab9 nvim: ignore column length in dashboard 2023-02-28 14:12:14 +01:00
Moritz Böhme c7fabe4eab nvim: add zoxide telescope 2023-02-28 14:11:54 +01:00
2 changed files with 6 additions and 0 deletions

View File

@ -71,9 +71,11 @@ in
nvim-web-devicons # for dashboard-nvim
orgmode
plenary-nvim # for telescope, neogit
popup-nvim
smartcolumn-nvim
telescope-fzf-native-nvim
telescope-nvim
telescope-zoxide
vim-lion
which-key-nvim
];

View File

@ -67,10 +67,13 @@ require("noice").setup({
},
})
require("telescope").load_extension("zoxide")
wk.register({
f = {
name = "find",
f = { "<cmd>Telescope find_files<cr>", "find file" },
z = { "<cmd>Telescope zoxide list<cr>", "find location" },
l = { "<cmd>Telescope current_buffer_fuzzy_find<cr>", "find line" },
g = { "<cmd>Telescope live_grep<cr>", "live grep" },
b = { "<cmd>Telescope buffers<cr>", "find buffer" },
},
@ -487,4 +490,5 @@ wk.register({
require("smartcolumn").setup({
colorcolumn = 120,
disabled_filetypes = { "help", "text", "markdown", "dashboard" },
})