From 1c84d0b6a88d144277a050c10e518855bba53862 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Wed, 31 Jan 2024 20:52:11 -0500 Subject: [PATCH] Formatting --- nix/base-system/init.lua | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/nix/base-system/init.lua b/nix/base-system/init.lua index 26c8db1..1700eec 100644 --- a/nix/base-system/init.lua +++ b/nix/base-system/init.lua @@ -91,7 +91,7 @@ cmp.setup({ sources = cmp.config.sources( { { name = 'nvim_lsp', keyword_length = 3 }, -- from language server - { name = 'nvim_lsp_signature_help' }, -- display function signatures with current parameter emphasized + { name = 'nvim_lsp_signature_help' }, -- display function signatures with current parameter emphasized }, { { name = 'path' }, -- file paths @@ -195,9 +195,9 @@ lspconfig.tsserver.setup { lspconfig.rust_analyzer.setup { settings = { -- https://github.com/rust-lang/rust-analyzer/blob/master/docs/user/generated_config.adoc - ['rust-analyzer'] = { - cargo = { features = "all" } - } + ['rust-analyzer'] = { + cargo = { features = "all" } + } }, capabilities = caps } @@ -347,17 +347,17 @@ require('nvim-treesitter.configs').setup { } require 'treesitter-context'.setup { - enable = true, -- Enable this plugin (Can be enabled/disabled later via commands) - max_lines = 5, -- How many lines the window should span. Values <= 0 mean no limit. - min_window_height = 45, -- Minimum editor window height to enable context. Values <= 0 mean no limit. + enable = true, -- Enable this plugin (Can be enabled/disabled later via commands) + max_lines = 5, -- How many lines the window should span. Values <= 0 mean no limit. + min_window_height = 45, -- Minimum editor window height to enable context. Values <= 0 mean no limit. line_numbers = true, multiline_threshold = 20, -- Maximum number of lines to collapse for a single context line - trim_scope = 'outer', -- Which context lines to discard if `max_lines` is exceeded. Choices: 'inner', 'outer' - mode = 'cursor', -- Line used to calculate context. Choices: 'cursor', 'topline' + trim_scope = 'outer', -- Which context lines to discard if `max_lines` is exceeded. Choices: 'inner', 'outer' + mode = 'cursor', -- Line used to calculate context. Choices: 'cursor', 'topline' -- Separator between context and content. Should be a single character string, like '-'. -- When separator is set, the context will only show up when there are at least 2 lines above cursorline. separator = nil, - zindex = 20, -- The Z-index of the context window + zindex = 20, -- The Z-index of the context window on_attach = nil, -- (fun(buf: integer): boolean) return false to disable attaching }