style: formatted lua source
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 26s Details

This commit is contained in:
Sven Vogel 2024-11-08 18:22:53 +01:00
parent 252bfae0b0
commit c69a88e20f
19 changed files with 57 additions and 79 deletions

View File

@ -1,4 +1,3 @@
--
-- Initialize Neovim configuration
-- ..............................................

View File

@ -1,4 +1,3 @@
--
-- Icons
--

View File

@ -1,4 +1,3 @@
--
-- Global custom plugin agnostic keymaps
-- ..............................................
@ -88,7 +87,6 @@ local keymaps = {
local file_type = vim.api.nvim_buf_get_option(buf, 'filetype')
if buf_type == '' then
-- check if buffer is in ignore
in_ignore = false
for _, v in ipairs(ignore) do

View File

@ -1,4 +1,3 @@
--
-- Bootstrap and start Lazy.nvim plugins
-- manager.

View File

@ -1,4 +1,3 @@
--
-- Neovim and VIM global configuration
-- and options
@ -41,4 +40,3 @@ opt.smartindent = true
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
vim.g.inlay_hints_visible = true

View File

@ -1,4 +1,3 @@
--
-- User interface configuration
--

View File

@ -14,7 +14,7 @@ return {
clickable = true,
-- Set the filetypes which barbar will offset itself for
sidebar_filetypes = {
['neo-tree'] = {event = 'BufWipeout'}
['neo-tree'] = { event = 'BufWipeout' }
}
},
version = '^1.0.0'

View File

@ -1,5 +1,3 @@
--
-- Global custom plugin agnostic keymaps
--

View File

@ -1,4 +1,3 @@
--
-- Improve the default vim.ui interfaces
--

View File

@ -1,4 +1,3 @@
--
-- Super fast git decorations implemented purely in Lua
--

View File

@ -1,4 +1,3 @@
--
-- Identation markers
--

View File

@ -1,4 +1,3 @@
--
-- Mini plugin library
--

View File

@ -1,4 +1,3 @@
--
-- Pretty file tree with various sources
--

View File

@ -1,4 +1,3 @@
--
-- Start config for builtin Neovim language server protocol client
--
@ -64,7 +63,6 @@ return {
function(server_name) -- default handler (optional)
require("lspconfig")[server_name].setup({
on_attach = function(client, bufnr)
-- optionally enable inlay hints
-- Source: https://www.reddit.com/r/neovim/comments/14em0f8/how_to_use_the_new_lsp_inlay_hints/
-- ..............................................

View File

@ -1,4 +1,3 @@
--
-- Prettier user interface for VIM notifications.
--

View File

@ -1,4 +1,3 @@
--
-- Tree sitter syntax highlightning
--

View File

@ -1,4 +1,3 @@
--
-- Super fast git decorations implemented purely in Lua
--

View File

@ -1,4 +1,3 @@
--
-- Dim all non active scopes using tree sitter
--

View File

@ -1,4 +1,3 @@
--
-- Mark all occurances of the word under the current cursor
--