Browse Source

feat: updates

master
Tovi Jaeschke-Rogers 3 days ago
parent
commit
d07ee2d5c1
8 changed files with 23 additions and 37 deletions
  1. +0
    -6
      .config/nvim/lua/plugins/alpha.lua
  2. +8
    -8
      .config/nvim/lua/plugins/avante.lua
  3. +0
    -0
      .config/nvim/lua/plugins/conform.lua
  4. +2
    -0
      .config/nvim/lua/plugins/nvim-treesitter.lua
  5. +0
    -9
      .config/nvim/lua/plugins/scissors.lua
  6. +1
    -1
      .config/nvim/lua/plugins/telescope.lua
  7. +0
    -1
      .config/nvim/lua/plugins/telescope/multigrep.lua
  8. +12
    -12
      .config/nvim/lua/plugins/undotree.lua

+ 0
- 6
.config/nvim/lua/plugins/alpha.lua View File

@ -17,12 +17,6 @@ return {
[[ ]],
}
local neovim_decimal = {
[[ ]],
[[ 78 101 111 86 105 109 ]],
[[ ]],
}
-- Set the ASCII art
dashboard.section.header.val = neovim_lean


+ 8
- 8
.config/nvim/lua/plugins/avante.lua View File

@ -30,13 +30,13 @@ return {
},
},
},
{
-- Make sure to set this up properly if you have lazy=true
'MeanderingProgrammer/render-markdown.nvim',
opts = {
file_types = { "markdown", "Avante" },
},
ft = { "markdown", "Avante" },
},
-- {
-- -- Make sure to set this up properly if you have lazy=true
-- 'MeanderingProgrammer/render-markdown.nvim',
-- opts = {
-- file_types = { "markdown", "Avante" },
-- },
-- ft = { "markdown", "Avante" },
-- },
},
}

.config/nvim/lua/plugins/formatting.lua → .config/nvim/lua/plugins/conform.lua View File


+ 2
- 0
.config/nvim/lua/plugins/nvim-treesitter.lua View File

@ -81,8 +81,10 @@ return {
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
disable = { "latex" },
},
conceal = false,
indent = { enable = true },
autotag = { enable = true },
textobjects = {


+ 0
- 9
.config/nvim/lua/plugins/scissors.lua View File

@ -1,9 +0,0 @@
return {
"chrisgrieser/nvim-scissors",
event = "VeryLazy",
lazy = true,
dependencies = "nvim-telescope/telescope.nvim",
opts = {
snippetDir = "~/.config/nvim/snippets",
},
}

+ 1
- 1
.config/nvim/lua/plugins/telescope.lua View File

@ -2,10 +2,10 @@ return {
"nvim-telescope/telescope.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
"nvim-tree/nvim-web-devicons",
"debugloop/telescope-undo.nvim",
"nvim-telescope/telescope-ui-select.nvim",
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
},
config = function()
local telescope = require("telescope")


+ 0
- 1
.config/nvim/lua/plugins/telescope/multigrep.lua View File

@ -11,7 +11,6 @@ M.live_multgrep = function (opts)
local finder = finders.new_async_job({
command_generator = function (prompt)
print(prompt)
if not prompt or prompt == "" then
return nil
end


+ 12
- 12
.config/nvim/lua/plugins/undotree.lua View File

@ -1,18 +1,18 @@
return {
"mbbill/undotree",
"mbbill/undotree",
event = "VeryLazy",
config = function()
if vim.fn.has("persistent_undo") == 0 then
return
end
config = function()
if vim.fn.has("persistent_undo") == 0 then
return
end
local target_path = vim.fn.expand("~/.cache/nvim/undodir/")
local target_path = vim.fn.expand("~/.cache/nvim/undodir/")
if vim.fn.isdirectory(target_path) == 0 then
vim.fn.mkdir(target_path, "p", 0700)
end
if vim.fn.isdirectory(target_path) == 0 then
vim.fn.mkdir(target_path, "p", "0700")
end
vim.opt.undodir = target_path
vim.opt.undofile = true
end,
vim.opt.undodir = target_path
vim.opt.undofile = true
end,
}

Loading…
Cancel
Save