added conform formatter and formatted all files
This commit is contained in:
parent
6c68f8d6c7
commit
e5602dd693
6
init.lua
6
init.lua
|
@ -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
|
||||
|
|
|
@ -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
|
||||
height = options.ui.popup.height,
|
||||
},
|
||||
border = options.ui.border,
|
||||
wrap = true,
|
||||
icons = options.lazy.icons,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
|
108
lua/keymap.lua
108
lua/keymap.lua
|
@ -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" },
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ return {
|
|||
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,
|
||||
|
@ -29,13 +29,13 @@ return {
|
|||
foldsep = " ",
|
||||
diff = "╱",
|
||||
eob = " ",
|
||||
horiz = '─',
|
||||
horizup = '─',
|
||||
horizdown = '─',
|
||||
vert = '▎',
|
||||
vertleft = '▎',
|
||||
vertright = '▎',
|
||||
verthoriz = '▎',
|
||||
horiz = "─",
|
||||
horizup = "─",
|
||||
horizdown = "─",
|
||||
vert = "▎",
|
||||
vertleft = "▎",
|
||||
vertright = "▎",
|
||||
verthoriz = "▎",
|
||||
},
|
||||
mousemoveevent = true,
|
||||
laststatus = 3, -- global statusline
|
||||
|
@ -45,8 +45,8 @@ return {
|
|||
border = "rounded",
|
||||
popup = {
|
||||
width = 0.6,
|
||||
height = 0.8
|
||||
}
|
||||
height = 0.8,
|
||||
},
|
||||
},
|
||||
lsp = {
|
||||
icons = {
|
||||
|
@ -63,7 +63,7 @@ return {
|
|||
delete = "",
|
||||
topdelete = "",
|
||||
changedelete = "│",
|
||||
untracked = "│"
|
||||
untracked = "│",
|
||||
},
|
||||
},
|
||||
lazy = {
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
return {
|
||||
{
|
||||
'romgrk/barbar.nvim',
|
||||
init = function() vim.g.barbar_auto_setup = false end,
|
||||
opts = function ()
|
||||
local options = require('options')
|
||||
"romgrk/barbar.nvim",
|
||||
init = function()
|
||||
vim.g.barbar_auto_setup = false
|
||||
end,
|
||||
opts = function()
|
||||
local options = require("options")
|
||||
return {
|
||||
animation = true,
|
||||
tabpages = true,
|
||||
|
@ -14,19 +16,20 @@ return {
|
|||
},
|
||||
clickable = true,
|
||||
pinned = {
|
||||
button = '',
|
||||
filename = true
|
||||
button = "",
|
||||
filename = true,
|
||||
},
|
||||
icons = {
|
||||
separator = {left = '▎', right = ''},
|
||||
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
|
||||
[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,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -23,7 +23,6 @@ return {
|
|||
"lazyterm",
|
||||
},
|
||||
},
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -1,61 +1,61 @@
|
|||
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
|
||||
|
@ -77,7 +77,7 @@ return {
|
|||
kind.menu = " (" .. (strings[2] or "") .. ")"
|
||||
|
||||
return kind
|
||||
end
|
||||
end,
|
||||
},
|
||||
experimental = {
|
||||
ghost_text = {
|
||||
|
@ -85,6 +85,6 @@ return {
|
|||
},
|
||||
},
|
||||
})
|
||||
end
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -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" },
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
|
@ -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,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
return {
|
||||
{
|
||||
"RRethy/vim-illuminate",
|
||||
config = function (_, _)
|
||||
require('illuminate').configure({
|
||||
|
||||
})
|
||||
end
|
||||
}
|
||||
config = function(_, _)
|
||||
require("illuminate").configure({})
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ return {
|
|||
"neovim/nvim-lspconfig",
|
||||
dependencies = {
|
||||
"williamboman/mason.nvim",
|
||||
"williamboman/mason-lspconfig.nvim"
|
||||
"williamboman/mason-lspconfig.nvim",
|
||||
},
|
||||
opts = {
|
||||
diagnostics = {
|
||||
|
@ -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,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -2,58 +2,58 @@ 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
|
||||
component_separators = { left = "", right = "" },
|
||||
section_separators = { left = "", right = "" },
|
||||
globalstatus = true,
|
||||
},
|
||||
sections = {
|
||||
lualine_a = {
|
||||
{
|
||||
function ()
|
||||
return ' '
|
||||
function()
|
||||
return " "
|
||||
end,
|
||||
separator = { left = '', right = '' },
|
||||
separator = { left = "", right = "" },
|
||||
padding = 1,
|
||||
fmt = function (text)
|
||||
fmt = function(text)
|
||||
return string.gsub(text, "%s+", "")
|
||||
end
|
||||
end,
|
||||
},
|
||||
{
|
||||
'mode',
|
||||
"mode",
|
||||
padding = 0,
|
||||
fmt = function (text)
|
||||
return string.gsub(text, "%s+", "") .. ' '
|
||||
end
|
||||
}
|
||||
fmt = function(text)
|
||||
return string.gsub(text, "%s+", "") .. " "
|
||||
end,
|
||||
},
|
||||
},
|
||||
lualine_b = {
|
||||
{
|
||||
'filename',
|
||||
"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
|
||||
}
|
||||
}
|
||||
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 = ''
|
||||
"branch",
|
||||
icon = "",
|
||||
},
|
||||
{
|
||||
'diff',
|
||||
"diff",
|
||||
symbols = {
|
||||
added = '+',
|
||||
modified = '~',
|
||||
removed = '-',
|
||||
added = "+",
|
||||
modified = "~",
|
||||
removed = "-",
|
||||
},
|
||||
on_click = function ()
|
||||
on_click = function()
|
||||
vim.defer_fn(function()
|
||||
vim.cmd("Gitsigns diffthis")
|
||||
end, 100)
|
||||
|
@ -62,19 +62,19 @@ return {
|
|||
},
|
||||
lualine_x = {
|
||||
{
|
||||
function ()
|
||||
function()
|
||||
local client_id = vim.lsp.get_client_by_id(1)
|
||||
return ' LSP ~ ' .. client_id.name
|
||||
return " LSP ~ " .. client_id.name
|
||||
end,
|
||||
on_click = function ()
|
||||
on_click = function()
|
||||
vim.defer_fn(function()
|
||||
vim.cmd("LspInfo")
|
||||
end, 100)
|
||||
end,
|
||||
color = 'lualine_c_inactive'
|
||||
color = "lualine_c_inactive",
|
||||
},
|
||||
{
|
||||
'diagnostics',
|
||||
"diagnostics",
|
||||
symbols = {
|
||||
error = options.lsp.icons.Error,
|
||||
warn = options.lsp.icons.Warn,
|
||||
|
@ -82,52 +82,51 @@ return {
|
|||
hint = options.lsp.icons.Hint,
|
||||
},
|
||||
sources = {
|
||||
'nvim_diagnostic'
|
||||
"nvim_diagnostic",
|
||||
},
|
||||
update_in_insert = true,
|
||||
on_click = function ()
|
||||
on_click = function()
|
||||
vim.defer_fn(function()
|
||||
vim.cmd("TroubleToggle")
|
||||
end, 100)
|
||||
end,
|
||||
},
|
||||
{
|
||||
'filetype',
|
||||
"filetype",
|
||||
colored = true,
|
||||
on_click = function(_, _)
|
||||
vim.defer_fn(function()
|
||||
vim.cmd("Telescope filetypes")
|
||||
end, 100)
|
||||
end
|
||||
end,
|
||||
},
|
||||
'encoding',
|
||||
'fileformat'
|
||||
"encoding",
|
||||
"fileformat",
|
||||
},
|
||||
lualine_y = {
|
||||
{ 'progress' }
|
||||
{ "progress" },
|
||||
},
|
||||
lualine_z = {'location'}
|
||||
lualine_z = { "location" },
|
||||
},
|
||||
inactive_sections = {
|
||||
lualine_a = {},
|
||||
lualine_b = {},
|
||||
lualine_c = {
|
||||
{
|
||||
'filename',
|
||||
"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
|
||||
}
|
||||
}
|
||||
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_x = { "location" },
|
||||
lualine_y = {},
|
||||
lualine_z = {}
|
||||
}
|
||||
}
|
||||
end
|
||||
lualine_z = {},
|
||||
},
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
return {
|
||||
"folke/trouble.nvim",
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
opts = function (_)
|
||||
local options = require('options')
|
||||
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,
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
@ -6,6 +6,6 @@ return {
|
|||
style = "dark",
|
||||
transparent = true,
|
||||
italic_comments = false,
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
@ -3,17 +3,17 @@
|
|||
printf "Continue copying files and removing current for Neovim (y/n)? "
|
||||
read -r choice
|
||||
case "$choice" in
|
||||
y|Y )
|
||||
y | Y)
|
||||
echo "removing current neovim config..."
|
||||
rm -rfv ~/.config/nvim/*
|
||||
echo "copying files..."
|
||||
cp -rv * ~/.config/nvim/
|
||||
;;
|
||||
n|N )
|
||||
n | N)
|
||||
echo "aborting..."
|
||||
exit 0
|
||||
;;
|
||||
* )
|
||||
*)
|
||||
echo "invalid"
|
||||
exit 1
|
||||
;;
|
||||
|
|
Loading…
Reference in New Issue