aboutsummaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorChris Patti <feoh@feoh.org>2023-10-07 19:50:17 -0400
committerGitHub <noreply@github.com>2023-10-07 19:50:17 -0400
commitf70edeec1b50b5857aa2179aab7c05f3b1d20407 (patch)
tree79911cbd64335dc06581d6b4722e8dd05e4153d5 /init.lua
parentf15af9b8be96f7231c184e0e8636f5732ebda9e9 (diff)
parent36224daa1bfff3b2fe7067952f305111f99b356f (diff)
Merge pull request #455 from Anthony-Fiddes/fix-mason-setup
Fix Mason setup bug and run stylua
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua43
1 files changed, 28 insertions, 15 deletions
diff --git a/init.lua b/init.lua
index e5bc576..11f55d0 100644
--- a/init.lua
+++ b/init.lua
@@ -81,7 +81,7 @@ require('lazy').setup({
'neovim/nvim-lspconfig',
dependencies = {
-- Automatically install LSPs to stdpath for neovim
- { 'williamboman/mason.nvim', config = true },
+ 'williamboman/mason.nvim',
'williamboman/mason-lspconfig.nvim',
-- Useful status updates for LSP
@@ -128,16 +128,24 @@ require('lazy').setup({
-- don't override the built-in and fugitive keymaps
local gs = package.loaded.gitsigns
- vim.keymap.set({'n', 'v'}, ']c', function()
- if vim.wo.diff then return ']c' end
- vim.schedule(function() gs.next_hunk() end)
+ vim.keymap.set({ 'n', 'v' }, ']c', function()
+ if vim.wo.diff then
+ return ']c'
+ end
+ vim.schedule(function()
+ gs.next_hunk()
+ end)
return '<Ignore>'
- end, {expr=true, buffer = bufnr, desc = "Jump to next hunk"})
- vim.keymap.set({'n', 'v'}, '[c', function()
- if vim.wo.diff then return '[c' end
- vim.schedule(function() gs.prev_hunk() end)
+ end, { expr = true, buffer = bufnr, desc = 'Jump to next hunk' })
+ vim.keymap.set({ 'n', 'v' }, '[c', function()
+ if vim.wo.diff then
+ return '[c'
+ end
+ vim.schedule(function()
+ gs.prev_hunk()
+ end)
return '<Ignore>'
- end, {expr=true, buffer = bufnr, desc = "Jump to previous hunk"})
+ end, { expr = true, buffer = bufnr, desc = 'Jump to previous hunk' })
end,
},
},
@@ -170,7 +178,7 @@ require('lazy').setup({
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help indent_blankline.txt`
- main = "ibl",
+ main = 'ibl',
opts = {},
},
@@ -326,10 +334,10 @@ vim.defer_fn(function()
require('nvim-treesitter.configs').setup {
-- Add languages to be installed here that you want installed for treesitter
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim' },
-
+
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
auto_install = false,
-
+
highlight = { enable = true },
indent = { enable = true },
incremental_selection = {
@@ -440,7 +448,7 @@ local on_attach = function(_, bufnr)
end
-- document existing key chains
-require('which-key').register({
+require('which-key').register {
['<leader>c'] = { name = '[C]ode', _ = 'which_key_ignore' },
['<leader>d'] = { name = '[D]ocument', _ = 'which_key_ignore' },
['<leader>g'] = { name = '[G]it', _ = 'which_key_ignore' },
@@ -448,7 +456,12 @@ require('which-key').register({
['<leader>r'] = { name = '[R]ename', _ = 'which_key_ignore' },
['<leader>s'] = { name = '[S]earch', _ = 'which_key_ignore' },
['<leader>w'] = { name = '[W]orkspace', _ = 'which_key_ignore' },
-})
+}
+
+-- mason-lspconfig requires that these setup functions are called in this order
+-- before setting up the servers.
+require('mason').setup()
+require('mason-lspconfig').setup()
-- Enable the following language servers
-- Feel free to add/remove any LSPs that you want here. They will automatically be installed.
@@ -496,7 +509,7 @@ mason_lspconfig.setup_handlers {
settings = servers[server_name],
filetypes = (servers[server_name] or {}).filetypes,
}
- end
+ end,
}
-- [[ Configure nvim-cmp ]]