added conform formatter and formatted all files

This commit is contained in:
Sven Vogel 2024-04-13 10:49:11 +02:00
parent 6c68f8d6c7
commit e5602dd693
21 changed files with 438 additions and 365 deletions

View File

@ -1,7 +1,7 @@
require('bootstrap')
require("bootstrap")
-- load options
local options = require('options')
local options = require("options")
-- set neovim options
for k, v in pairs(options.vim) do
@ -16,7 +16,7 @@ if not status then
end
-- apply keymap
local keymap = require('keymap')
local keymap = require("keymap")
for _, v in pairs(keymap) do
vim.keymap.set(v[1], v[2], v[3], v[4])
end

View File

@ -17,22 +17,22 @@ local options = require("options")
require("lazy").setup({
spec = {
{
import = "plugins"
}
import = "plugins",
},
},
install = {
missing = options.lazy.install_missing,
colorscheme = {
options.ui.theme
}
options.ui.theme,
},
},
ui = {
size = {
width = options.ui.popup.width,
height = options.ui.popup.height
},
border = options.ui.border,
wrap = true,
width = options.ui.popup.width,
height = options.ui.popup.height,
},
border = options.ui.border,
wrap = true,
icons = options.lazy.icons,
}
},
})

View File

@ -1,66 +1,128 @@
return {
{
{ 'i', 'x', 'n', 's' }, "<C-s>", "<cmd>w<cr><esc>", { desc = "Save file" }
{ "i", "x", "n", "s" },
"<C-s>",
"<cmd>w<cr><esc>",
{ desc = "Save file" },
},
{
{ 'n' }, "<C-t>", "<cmd>enew<cr>", { desc = "New File" }
{ "n" },
"<C-t>",
"<cmd>enew<cr>",
{ desc = "New File" },
},
{
{ 'n', 'i' }, '<C-z>', '<cmd>u<CR>', { desc = "Undo" }
{ "n", "i" },
"<C-z>",
"<cmd>u<CR>",
{ desc = "Undo" },
},
{
{ 'n', 'i' }, '<C-y>', '<cmd>redo<CR>', { desc = "Undo" }
{ "n", "i" },
"<C-y>",
"<cmd>redo<CR>",
{ desc = "Undo" },
},
{
{ 'n', 'i' }, '<S-tab>', '<cmd><<CR>', { desc = "Remove Tab" }
{ "n", "i" },
"<S-tab>",
"<cmd><<CR>",
{ desc = "Remove Tab" },
},
{
{ 'n', 'i' }, '<C-g>', '<cmd>Telescope<CR>', { desc = "Open Telescope" }
{ "n", "i" },
"<C-g>",
"<cmd>Telescope<CR>",
{ desc = "Open Telescope" },
},
{
{ 'n', 'i' }, '<S-ScrollWheelUp>', '<ScrollWheelLeft>', { desc = "Scroll sideways" }
{ "n", "i" },
"<S-ScrollWheelUp>",
"<ScrollWheelLeft>",
{ desc = "Scroll sideways" },
},
{
{ 'n', 'i' }, '<S-ScrollWheelDown>', '<ScrollWheelRight>', { desc = "Scroll sideways" }
{ "n", "i" },
"<S-ScrollWheelDown>",
"<ScrollWheelRight>",
{ desc = "Scroll sideways" },
},
{
{ 'n' }, "<S-Tab>", "<cmd>BufferPrevious<CR>", { desc = "Next Tab", silent = false }
{ "n" },
"<S-Tab>",
"<cmd>BufferPrevious<CR>",
{ desc = "Next Tab", silent = false },
},
{
{ 'n' }, "<Tab>", "<cmd>BufferNext<CR>", { desc = "Previous Tab", silent = false }
{ "n" },
"<Tab>",
"<cmd>BufferNext<CR>",
{ desc = "Previous Tab", silent = false },
},
{
{ 'n' }, '<C-w>', '', { desc = "Disable STRG+w" }
{ "n" },
"<C-w>",
"",
{ desc = "Disable STRG+w" },
},
{
{ 'n' }, '<C-w>v', '<cmd>vsplit<CR>', { desc = "Split Vertical", noremap = true }
{ "n" },
"<C-w>v",
"<cmd>vsplit<CR>",
{ desc = "Split Vertical", noremap = true },
},
{
{ 'n' }, '<C-w>h', '<cmd>split<CR>', { desc = "Split Horizontal", noremap = true }
{ "n" },
"<C-w>h",
"<cmd>split<CR>",
{ desc = "Split Horizontal", noremap = true },
},
{
{ 'n' }, '<C-w>q', '<cmd>BufferClose<CR>', { desc = "Quit Window" }
{ "n" },
"<C-w>q",
"<cmd>BufferClose<CR>",
{ desc = "Quit Window" },
},
{
{ 'n' }, '<C-w><Left>', '<cmd>wincmd h<CR>', { desc = "Window Left" }
{ "n" },
"<C-w><Left>",
"<cmd>wincmd h<CR>",
{ desc = "Window Left" },
},
{
{ 'n' }, '<C-w><Down>', '<cmd>wincmd j<CR>', { desc = "Window Down" }
{ "n" },
"<C-w><Down>",
"<cmd>wincmd j<CR>",
{ desc = "Window Down" },
},
{
{ 'n' }, '<C-w><Up>', '<cmd>wincmd k<CR>', { desc = "Window Up" }
{ "n" },
"<C-w><Up>",
"<cmd>wincmd k<CR>",
{ desc = "Window Up" },
},
{
{ 'n' }, '<C-w><Right>', '<cmd>wincmd l<CR>', { desc = "Window Right" }
{ "n" },
"<C-w><Right>",
"<cmd>wincmd l<CR>",
{ desc = "Window Right" },
},
{
{ 'n', 'i' }, '<C-b>', '<cmd>NvimTreeToggle<CR>', { desc = "Toggle Neotree" }
{ "n", "i" },
"<C-b>",
"<cmd>NvimTreeToggle<CR>",
{ desc = "Toggle Neotree" },
},
{
{ 'n' }, ':', '<cmd>Telescope cmdline<CR>', { noremap = true, desc = "Open Cmdline" }
{ "n" },
":",
"<cmd>Telescope cmdline<CR>",
{ noremap = true, desc = "Open Cmdline" },
},
{
{ 'n' }, '<leader><leader>', '<cmd>Telescope cmdline<CR>', { noremap = true, desc = "Open Cmdline" }
}
{ "n" },
"<leader><leader>",
"<cmd>Telescope cmdline<CR>",
{ noremap = true, desc = "Open Cmdline" },
},
}

View File

@ -1,24 +1,24 @@
return {
vim = {
swapfile = false, -- disable swap files cuz they are garbage
clipboard = "unnamedplus", -- Sync with system clipboard
expandtab = true, -- spaces instead of tabs
shiftwidth = 4, -- tab width in spaces
tabstop = 4, -- Number of spaces tabs count for
swapfile = false, -- disable swap files cuz they are garbage
clipboard = "unnamedplus", -- Sync with system clipboard
expandtab = true, -- spaces instead of tabs
shiftwidth = 4, -- tab width in spaces
tabstop = 4, -- Number of spaces tabs count for
completeopt = "menu,menuone,noselect",
confirm = true, -- Confirm to save changes before exiting modified buffer
cursorline = true, -- Enable highlighting of the current line
ignorecase = true, -- Ignore case
mouse = "a", -- Enable mouse mode
number = true, -- Print line number
pumblend = 0, -- Popup pseudo transparency
pumheight = 12, -- Popup height
showmode = false, -- Dont show mode since we have a statusline
smartindent = true, -- Insert indents automatically
termguicolors = true, -- True color support
virtualedit = "block", -- Allow cursor to move where there is no text in visual block mode
confirm = true, -- Confirm to save changes before exiting modified buffer
cursorline = true, -- Enable highlighting of the current line
ignorecase = true, -- Ignore case
mouse = "a", -- Enable mouse mode
number = true, -- Print line number
pumblend = 0, -- Popup pseudo transparency
pumheight = 12, -- Popup height
showmode = false, -- Dont show mode since we have a statusline
smartindent = true, -- Insert indents automatically
termguicolors = true, -- True color support
virtualedit = "block", -- Allow cursor to move where there is no text in visual block mode
wrap = false,
foldcolumn = '1',
foldcolumn = "1",
foldlevel = 99,
foldlevelstart = 99,
foldenable = true,
@ -27,33 +27,33 @@ return {
foldclose = "",
fold = " ",
foldsep = " ",
diff = "",
diff = "",
eob = " ",
horiz = '',
horizup = '',
horizdown = '',
vert = '',
vertleft = '',
vertright = '',
verthoriz = '',
horiz = "",
horizup = "",
horizdown = "",
vert = "",
vertleft = "",
vertright = "",
verthoriz = "",
},
mousemoveevent = true,
laststatus = 3, -- global statusline
laststatus = 3, -- global statusline
},
ui = {
theme = "vscode",
border = "rounded",
popup = {
width = 0.6,
height = 0.8
}
height = 0.8,
},
},
lsp = {
icons = {
Error = "",
Warn = "",
Hint = "",
Info = "",
Warn = "",
Hint = "",
Info = "",
},
},
git = {
@ -63,7 +63,7 @@ return {
delete = "",
topdelete = "",
changedelete = "",
untracked = ""
untracked = "",
},
},
lazy = {

View File

@ -1,32 +1,35 @@
return {
{
'romgrk/barbar.nvim',
init = function() vim.g.barbar_auto_setup = false end,
opts = function ()
local options = require('options')
return {
animation = true,
tabpages = true,
insert_at_end = true,
maximum_padding = 4,
sidebar_filetypes = {
NvimTree = true,
},
clickable = true,
pinned = {
button = '',
filename = true
},
icons = {
separator = {left = '', right = ''},
diagnostics = {
[vim.diagnostic.severity.ERROR] = {enabled = true, icon = options.lsp.icons.Error},
[vim.diagnostic.severity.WARN] = {enabled = false, icon = options.lsp.icons.Warn},
[vim.diagnostic.severity.INFO] = {enabled = false, icon = options.lsp.icons.Info},
[vim.diagnostic.severity.HINT] = {enabled = true}, icon = options.lsp.icons.Hint},
"romgrk/barbar.nvim",
init = function()
vim.g.barbar_auto_setup = false
end,
opts = function()
local options = require("options")
return {
animation = true,
tabpages = true,
insert_at_end = true,
maximum_padding = 4,
sidebar_filetypes = {
NvimTree = true,
},
clickable = true,
pinned = {
button = "",
filename = true,
},
icons = {
separator = { left = "", right = "" },
diagnostics = {
[vim.diagnostic.severity.ERROR] = { enabled = true, icon = options.lsp.icons.Error },
[vim.diagnostic.severity.WARN] = { enabled = false, icon = options.lsp.icons.Warn },
[vim.diagnostic.severity.INFO] = { enabled = false, icon = options.lsp.icons.Info },
[vim.diagnostic.severity.HINT] = { enabled = true },
icon = options.lsp.icons.Hint,
},
},
}
}
end
}
end,
},
}

View File

@ -23,7 +23,6 @@ return {
"lazyterm",
},
},
}
},
},
}

View File

@ -1,90 +1,90 @@
return {
{
'hrsh7th/nvim-cmp',
"hrsh7th/nvim-cmp",
dependencies = {
-- extra completion plugins
'hrsh7th/cmp-cmdline',
'hrsh7th/cmp-path',
'hrsh7th/cmp-buffer',
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-calc',
'hrsh7th/cmp-emoji',
'kdheepak/cmp-latex-symbols',
"hrsh7th/cmp-cmdline",
"hrsh7th/cmp-path",
"hrsh7th/cmp-buffer",
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-calc",
"hrsh7th/cmp-emoji",
"kdheepak/cmp-latex-symbols",
-- snippets
'saadparwaiz1/cmp_luasnip',
'L3MON4D3/LuaSnip',
'onsails/lspkind.nvim'
"saadparwaiz1/cmp_luasnip",
"L3MON4D3/LuaSnip",
"onsails/lspkind.nvim",
},
config = function(_, _)
local cmp = require("cmp");
local cmp = require("cmp")
cmp.setup({
window = {
completion = {
border = "single",
scrollbar = false,
winhighlight = "Normal:CmpPmenu,FloatBorder:FloatBorder,Search:None"
winhighlight = "Normal:CmpPmenu,FloatBorder:FloatBorder,Search:None",
},
documentation = {
border = "single",
scrollbar = false,
winhighlight = "Normal:CmpPmenu,FloatBorder:FloatBorder,Search:None"
winhighlight = "Normal:CmpPmenu,FloatBorder:FloatBorder,Search:None",
},
},
snippet = {
expand = function(args)
require('luasnip').lsp_expand(args.body)
require("luasnip").lsp_expand(args.body)
end,
},
completion = {
preselect = 'none',
preselect = "none",
completeopt = "menu,menuone,noinser",
},
sources = cmp.config.sources({
{ name = 'nvim_lsp' },
{ name = 'nvim_lsp_signature_help' },
{ name = 'vsnip' },
{ name = 'buffer' },
{ name = "nvim_lsp" },
{ name = "nvim_lsp_signature_help" },
{ name = "vsnip" },
{ name = "buffer" },
{ name = "path" },
{ name = 'calc' },
{ name = "calc" },
}, {
{ name = 'emoji' },
{ name = "emoji" },
{ name = "cmdline" },
{ name = "latex_symbols" }
{ name = "latex_symbols" },
}),
mapping = cmp.mapping.preset.insert({
['<C-b>'] = cmp.mapping.scroll_docs(-4),
['<C-f>'] = cmp.mapping.scroll_docs(4),
['<C-Space>'] = cmp.mapping.complete(),
['<C-e>'] = cmp.mapping.abort(),
["<C-b>"] = cmp.mapping.scroll_docs(-4),
["<C-f>"] = cmp.mapping.scroll_docs(4),
["<C-Space>"] = cmp.mapping.complete(),
["<C-e>"] = cmp.mapping.abort(),
["<CR>"] = cmp.mapping({
i = function(fallback)
if cmp.visible() and cmp.get_active_entry() then
cmp.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = false })
else
fallback()
end
end,
s = cmp.mapping.confirm({ select = true }),
c = cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = true }),
}),
i = function(fallback)
if cmp.visible() and cmp.get_active_entry() then
cmp.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = false })
else
fallback()
end
end,
s = cmp.mapping.confirm({ select = true }),
c = cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = true }),
}),
}),
formatting = {
fields = { "kind", "abbr", "menu" },
format = function(entry, item)
local kind = require("lspkind").cmp_format({ mode = "symbol_text", maxwidth = 50 })(entry, item)
local kind = require("lspkind").cmp_format({ mode = "symbol_text", maxwidth = 50 })(entry, item)
local strings = vim.split(kind.kind, "%s", { trimempty = true })
kind.kind = (strings[1] or "") .. " "
kind.menu = " (" .. (strings[2] or "") .. ")"
return kind
end
end,
},
experimental = {
ghost_text = {
hl_group = "NonText",
},
},
ghost_text = {
hl_group = "NonText",
},
},
})
end
}
end,
},
}

19
lua/plugins/conform.lua Normal file
View File

@ -0,0 +1,19 @@
return {
{
"stevearc/conform.nvim",
opts = {
format_on_save = {
-- These options will be passed to conform.format()
timeout_ms = 500,
lsp_fallback = true,
},
formatters = {
injected = { options = { ignore_errors = true } },
},
formatters_by_ft = {
lua = { "stylua" },
sh = { "shfmt" },
},
},
},
}

View File

@ -2,7 +2,7 @@ return {
{
"lewis6991/gitsigns.nvim",
opts = function()
local options = require('options')
local options = require("options")
return {
signs = {
add = { text = options.git.icons.add },
@ -14,11 +14,9 @@ return {
},
signcolumn = true,
preview_config = {
border = 'rounded'
border = "rounded",
},
}
end
}
end,
},
}

View File

@ -1,10 +1,8 @@
return {
{
"RRethy/vim-illuminate",
config = function (_, _)
require('illuminate').configure({
})
end
}
config = function(_, _)
require("illuminate").configure({})
end,
},
}

View File

@ -3,27 +3,27 @@ return {
"neovim/nvim-lspconfig",
dependencies = {
"williamboman/mason.nvim",
"williamboman/mason-lspconfig.nvim"
"williamboman/mason-lspconfig.nvim",
},
opts = {
diagnostics = {
underline = true,
update_in_insert = true,
virtual_text = {
spacing = 4,
source = "if_many",
prefix = "",
},
severity_sort = true,
signs = {
text = {
[vim.diagnostic.severity.ERROR] = require("options").lsp.icons.Error,
[vim.diagnostic.severity.WARN] = require("options").lsp.icons.Warn,
[vim.diagnostic.severity.HINT] = require("options").lsp.icons.Hint,
[vim.diagnostic.severity.INFO] = require("options").lsp.icons.Info,
},
},
},
underline = true,
update_in_insert = true,
virtual_text = {
spacing = 4,
source = "if_many",
prefix = "",
},
severity_sort = true,
signs = {
text = {
[vim.diagnostic.severity.ERROR] = require("options").lsp.icons.Error,
[vim.diagnostic.severity.WARN] = require("options").lsp.icons.Warn,
[vim.diagnostic.severity.HINT] = require("options").lsp.icons.Hint,
[vim.diagnostic.severity.INFO] = require("options").lsp.icons.Info,
},
},
},
},
config = function(_, opts)
local options = require("options")
@ -34,8 +34,8 @@ return {
-- The first entry (without a key) will be the default handler
-- and will be called for each installed server that doesn't have
-- a dedicated handler.
function (server_name) -- default handler (optional)
require("lspconfig")[server_name].setup {}
function(server_name) -- default handler (optional)
require("lspconfig")[server_name].setup({})
end,
}
@ -49,7 +49,7 @@ return {
vim.diagnostic.config(vim.deepcopy(opts.diagnostics))
require'lspconfig'.gdscript.setup{}
end
}
require("lspconfig").gdscript.setup({})
end,
},
}

View File

@ -2,132 +2,131 @@ return {
{
"nvim-lualine/lualine.nvim",
opts = function()
local options = require('options')
local options = require("options")
return {
options = {
theme = "vscode",
component_separators = { left = '', right = '' },
section_separators = { left = '', right = '' },
globalstatus = true
},
sections = {
lualine_a = {
{
function ()
return ''
end,
separator = { left = '', right = '' },
padding = 1,
fmt = function (text)
return string.gsub(text, "%s+", "")
end
},
{
'mode',
padding = 0,
fmt = function (text)
return string.gsub(text, "%s+", "") .. ' '
end
}
options = {
theme = "vscode",
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
globalstatus = true,
},
lualine_b = {
{
'filename',
symbols = {
modified = '', -- Text to show when the file is modified.
readonly = '', -- Text to show when the file is non-modifiable or readonly.
unnamed = '', -- Text to show for unnamed buffers.
newfile = '[New]', -- Text to show for newly created file before first write
}
}
},
lualine_c = {
{
'branch',
icon = '󰊤'
},
{
'diff',
symbols = {
added = '+',
modified = '~',
removed = '-',
sections = {
lualine_a = {
{
function()
return ""
end,
separator = { left = "", right = "" },
padding = 1,
fmt = function(text)
return string.gsub(text, "%s+", "")
end,
},
on_click = function ()
vim.defer_fn(function()
vim.cmd("Gitsigns diffthis")
end, 100)
end,
},
},
lualine_x = {
{
function ()
local client_id = vim.lsp.get_client_by_id(1)
return ' LSP ~ ' .. client_id.name
end,
on_click = function ()
vim.defer_fn(function()
vim.cmd("LspInfo")
end, 100)
end,
color = 'lualine_c_inactive'
},
{
'diagnostics',
symbols = {
error = options.lsp.icons.Error,
warn = options.lsp.icons.Warn,
info = options.lsp.icons.Info,
hint = options.lsp.icons.Hint,
{
"mode",
padding = 0,
fmt = function(text)
return string.gsub(text, "%s+", "") .. " "
end,
},
sources = {
'nvim_diagnostic'
},
lualine_b = {
{
"filename",
symbols = {
modified = "", -- Text to show when the file is modified.
readonly = "", -- Text to show when the file is non-modifiable or readonly.
unnamed = "", -- Text to show for unnamed buffers.
newfile = "[New]", -- Text to show for newly created file before first write
},
},
update_in_insert = true,
on_click = function ()
vim.defer_fn(function()
vim.cmd("TroubleToggle")
end, 100)
end,
},
{
'filetype',
colored = true,
on_click = function(_, _)
vim.defer_fn(function()
vim.cmd("Telescope filetypes")
end, 100)
end
lualine_c = {
{
"branch",
icon = "󰊤",
},
{
"diff",
symbols = {
added = "+",
modified = "~",
removed = "-",
},
on_click = function()
vim.defer_fn(function()
vim.cmd("Gitsigns diffthis")
end, 100)
end,
},
},
'encoding',
'fileformat'
lualine_x = {
{
function()
local client_id = vim.lsp.get_client_by_id(1)
return " LSP ~ " .. client_id.name
end,
on_click = function()
vim.defer_fn(function()
vim.cmd("LspInfo")
end, 100)
end,
color = "lualine_c_inactive",
},
{
"diagnostics",
symbols = {
error = options.lsp.icons.Error,
warn = options.lsp.icons.Warn,
info = options.lsp.icons.Info,
hint = options.lsp.icons.Hint,
},
sources = {
"nvim_diagnostic",
},
update_in_insert = true,
on_click = function()
vim.defer_fn(function()
vim.cmd("TroubleToggle")
end, 100)
end,
},
{
"filetype",
colored = true,
on_click = function(_, _)
vim.defer_fn(function()
vim.cmd("Telescope filetypes")
end, 100)
end,
},
"encoding",
"fileformat",
},
lualine_y = {
{ "progress" },
},
lualine_z = { "location" },
},
lualine_y = {
{ 'progress' }
inactive_sections = {
lualine_a = {},
lualine_b = {},
lualine_c = {
{
"filename",
symbols = {
modified = "", -- Text to show when the file is modified.
readonly = "", -- Text to show when the file is non-modifiable or readonly.
unnamed = "", -- Text to show for unnamed buffers.
newfile = "[New]", -- Text to show for newly created file before first write
},
},
},
lualine_x = { "location" },
lualine_y = {},
lualine_z = {},
},
lualine_z = {'location'}
},
inactive_sections = {
lualine_a = {},
lualine_b = {},
lualine_c = {
{
'filename',
symbols = {
modified = '', -- Text to show when the file is modified.
readonly = '', -- Text to show when the file is non-modifiable or readonly.
unnamed = '', -- Text to show for unnamed buffers.
newfile = '[New]', -- Text to show for newly created file before first write
}
}
},
lualine_x = {'location'},
lualine_y = {},
lualine_z = {}
}
}
end
}
end,
},
}

View File

@ -6,7 +6,7 @@ return {
"rcarriga/nvim-notify", -- fancy notifications
"MunifTanjim/nui.nvim", -- gui component library
},
opts = function(_,_)
opts = function(_, _)
return {
cmdline = {
enabled = true,
@ -14,22 +14,22 @@ return {
cmdline = {
pattern = "^:",
icon = "",
lang = "vim"
lang = "vim",
},
},
opts = {
win_options = {
winhighlight = {
FloatBorder = "LspInfoBorder"
}
FloatBorder = "LspInfoBorder",
},
},
position = {
row = 5,
col = "50%",
},
}
}
},
},
}
end
}
end,
},
}

View File

@ -18,7 +18,7 @@ return {
enable = true,
},
hijack_directories = {
enable = true
enable = true,
},
renderer = {
highlight_git = true,
@ -33,8 +33,8 @@ return {
},
view = {
signcolumn = "no",
width = 45
}
}
}
width = 45,
},
},
},
}

View File

@ -9,7 +9,7 @@ return {
"toggleterm",
"dashboard",
"aerial",
"NvimTree"
"NvimTree",
},
segments = {
-- diagnostic signs
@ -17,10 +17,10 @@ return {
sign = {
name = { "Diagnostic" },
colwidth = 2,
maxwidth = 1
maxwidth = 1,
},
auto = true,
click = "v:lua.ScSa"
click = "v:lua.ScSa",
},
-- line numbers
{
@ -30,16 +30,15 @@ return {
-- folds
{
text = { builtin.foldfunc },
click = "v:lua.ScFa"
click = "v:lua.ScFa",
},
-- git signs
{
sign = { namespace = { "gitsigns" } },
click = "v:lua.ScSa"
}
}
click = "v:lua.ScSa",
},
},
})
end,
}
},
}

View File

@ -4,9 +4,9 @@ return {
dependencies = {
"sharkdp/fd",
"nvim-lua/plenary.nvim",
'nvim-tree/nvim-web-devicons',
"nvim-tree/nvim-web-devicons",
-- extensionsdiff
'jonarrien/telescope-cmdline.nvim',
"jonarrien/telescope-cmdline.nvim",
"debugloop/telescope-undo.nvim",
},
tag = "0.1.6",
@ -14,26 +14,22 @@ return {
defaults = {
layout_strategy = "horizontal",
layout_config = {
prompt_position = "top"
prompt_position = "top",
},
sorting_strategy = "ascending",
winblend = 0,
theme = "dropdown"
theme = "dropdown",
},
extensions = {
cmdline = {
},
undo = {
},
cmdline = {},
undo = {},
},
},
config = function(_, opts)
require('telescope').setup(opts)
require("telescope").setup(opts)
require("telescope").load_extension("cmdline")
require("telescope").load_extension("undo")
end
end,
},
}

View File

@ -3,7 +3,7 @@ return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
event = {
"VeryLazy"
"VeryLazy",
},
dependencies = {
"nvim-treesitter/nvim-treesitter-textobjects",
@ -30,10 +30,10 @@ return {
end,
},
indent = {
enable = true
enable = true,
},
autotag = {
enable = true
enable = true,
},
textobjects = {
move = {
@ -47,6 +47,6 @@ return {
},
config = function(_, opts)
require("nvim-treesitter.configs").setup(opts)
end
}
end,
},
}

View File

@ -1,12 +1,12 @@
return {
"folke/trouble.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
opts = function (_)
local options = require('options')
return {
opts = function(_)
local options = require("options")
return {
padding = false,
indent_lines = false,
auto_jump = { },
auto_jump = {},
signs = {
error = options.lsp.icons.Error,
warning = options.lsp.icons.Warn,
@ -15,5 +15,5 @@ return {
other = options.lsp.icons.Info,
},
}
end
end,
}

View File

@ -2,10 +2,10 @@ return {
{
"kevinhwang91/nvim-ufo",
event = {
"InsertEnter"
"InsertEnter",
},
dependencies = {
"kevinhwang91/promise-async"
"kevinhwang91/promise-async",
},
opts = {
preview = {
@ -18,8 +18,8 @@ return {
},
-- register treesitter as source for scopes
provider_selector = function(_, _, _)
return { 'treesitter', 'indent' }
end
}
}
return { "treesitter", "indent" }
end,
},
},
}

View File

@ -6,6 +6,6 @@ return {
style = "dark",
transparent = true,
italic_comments = false,
}
}
},
},
}

View File

@ -3,18 +3,18 @@
printf "Continue copying files and removing current for Neovim (y/n)? "
read -r choice
case "$choice" in
y|Y )
echo "removing current neovim config..."
rm -rfv ~/.config/nvim/*
echo "copying files..."
cp -rv * ~/.config/nvim/
;;
n|N )
echo "aborting..."
exit 0
;;
* )
echo "invalid"
exit 1
;;
y | Y)
echo "removing current neovim config..."
rm -rfv ~/.config/nvim/*
echo "copying files..."
cp -rv * ~/.config/nvim/
;;
n | N)
echo "aborting..."
exit 0
;;
*)
echo "invalid"
exit 1
;;
esac