Fix tab width and insertion defaults.

This commit is contained in:
Drew 2025-05-12 23:19:34 -07:00
parent e7547cf9e7
commit e15bb92e27
11 changed files with 320 additions and 316 deletions

View file

@ -1,8 +1,8 @@
return {
{ "echasnovski/mini.pairs", event = "BufEnter", version = "*", opts = {} },
{ "echasnovski/mini.cursorword", event = "BufEnter", version = "*", opts = {} },
{
"folke/trouble.nvim",
opts = {},
},
{ "echasnovski/mini.pairs", event = "BufEnter", version = "*", opts = {} },
{ "echasnovski/mini.cursorword", event = "BufEnter", version = "*", opts = {} },
{
"folke/trouble.nvim",
opts = {},
},
}

View file

@ -1,22 +1,22 @@
return {
{
"lewis6991/gitsigns.nvim",
opts = {
signs = {
add = { text = "" },
change = { text = "" },
delete = { text = "" },
topdelete = { text = "" },
changedelete = { text = "" },
untracked = { text = "" },
},
signs_staged = {
add = { text = "" },
change = { text = "" },
delete = { text = "" },
topdelete = { text = "" },
changedelete = { text = "" },
},
},
},
{
"lewis6991/gitsigns.nvim",
opts = {
signs = {
add = { text = "" },
change = { text = "" },
delete = { text = "" },
topdelete = { text = "" },
changedelete = { text = "" },
untracked = { text = "" },
},
signs_staged = {
add = { text = "" },
change = { text = "" },
delete = { text = "" },
topdelete = { text = "" },
changedelete = { text = "" },
},
},
},
}

View file

@ -1,25 +1,25 @@
return {
"neovim/nvim-lspconfig",
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
},
{
"mrcjkb/rustaceanvim",
version = "^6", -- Recommended
lazy = false, -- This plugin is already lazy
enabled = true,
},
{
"saghen/blink.cmp",
version = "1.*",
opts = {
keymap = {
preset = "super-tab",
},
sources = {
default = { "lsp", "path", "buffer" },
},
},
},
"neovim/nvim-lspconfig",
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
},
{
"mrcjkb/rustaceanvim",
version = "^6", -- Recommended
lazy = false, -- This plugin is already lazy
enabled = true,
},
{
"saghen/blink.cmp",
version = "1.*",
opts = {
keymap = {
preset = "super-tab",
},
sources = {
default = { "lsp", "path", "buffer" },
},
},
},
}

View file

@ -1,9 +1,9 @@
return {
"folke/snacks.nvim",
priority = 1000,
opts = {
picker = {},
explorer = {},
toggle = {},
},
"folke/snacks.nvim",
priority = 1000,
opts = {
picker = {},
explorer = {},
toggle = {},
},
}

View file

@ -1,21 +1,21 @@
return {
{
"marko-cerovac/material.nvim",
lazy = false,
priority = 1000,
config = function()
vim.g.material_style = "darker"
end,
},
{
"folke/tokyonight.nvim",
lazy = true,
opts = { style = "moon" },
},
{
"dupeiran001/nord.nvim",
lazy = false,
priority = 1000,
opts = {},
},
{
"marko-cerovac/material.nvim",
lazy = false,
priority = 1000,
config = function()
vim.g.material_style = "darker"
end,
},
{
"folke/tokyonight.nvim",
lazy = true,
opts = { style = "moon" },
},
{
"dupeiran001/nord.nvim",
lazy = false,
priority = 1000,
opts = {},
},
}

View file

@ -1,54 +1,54 @@
return {
{
"folke/which-key.nvim",
event = "VeryLazy",
},
{
"echasnovski/mini.icons",
version = "*",
init = function()
package.preload["nvim-web-devicons"] = function()
require("mini.icons").mock_nvim_web_devicons()
return package.loaded["nvim-web-devicons"]
end
end,
},
{
"akinsho/bufferline.nvim",
version = "*",
dependencies = "nvim-tree/nvim-web-devicons",
opts = {
options = {
diagnostics = "nvim_lsp",
show_close_icon = false,
separator_style = "slant",
offsets = {
{
filetype = "snacks_layout_box",
text = "󰙅 File Explorer",
separator = true,
},
},
},
},
},
{
"folke/noice.nvim",
event = "VeryLazy",
dependencies = {
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
"MunifTanjim/nui.nvim",
-- OPTIONAL:
-- `nvim-notify` is only needed, if you want to use the notification view.
-- If not available, we use `mini` as the fallback
-- "rcarriga/nvim-notify",
},
opts = {
-- you can enable a preset for easier configuration
presets = {
bottom_search = true, -- use a classic bottom cmdline for search
command_palette = true, -- position the cmdline and popupmenu together
},
},
},
{
"folke/which-key.nvim",
event = "VeryLazy",
},
{
"echasnovski/mini.icons",
version = "*",
init = function()
package.preload["nvim-web-devicons"] = function()
require("mini.icons").mock_nvim_web_devicons()
return package.loaded["nvim-web-devicons"]
end
end,
},
{
"akinsho/bufferline.nvim",
version = "*",
dependencies = "nvim-tree/nvim-web-devicons",
opts = {
options = {
diagnostics = "nvim_lsp",
show_close_icon = false,
separator_style = "slant",
offsets = {
{
filetype = "snacks_layout_box",
text = "󰙅 File Explorer",
separator = true,
},
},
},
},
},
{
"folke/noice.nvim",
event = "VeryLazy",
dependencies = {
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
"MunifTanjim/nui.nvim",
-- OPTIONAL:
-- `nvim-notify` is only needed, if you want to use the notification view.
-- If not available, we use `mini` as the fallback
"rcarriga/nvim-notify",
},
opts = {
-- you can enable a preset for easier configuration
presets = {
bottom_search = true, -- use a classic bottom cmdline for search
command_palette = true, -- position the cmdline and popupmenu together
},
},
},
}