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 -- Initialize Neovim configuration
-- .............................................. -- ..............................................

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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