added conform formatter
This commit is contained in:
parent
fc4c1c2612
commit
d7575d7a55
5 changed files with 114 additions and 74 deletions
16
after/plugin/conform-config.lua
Normal file
16
after/plugin/conform-config.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
require('conform').setup {
|
||||
formatters_by_ft = {
|
||||
lua = { 'stylua' },
|
||||
-- Conform will run multiple formatters sequentially
|
||||
python = { 'isort', 'black' },
|
||||
-- Use a sub-list to run only the first available formatter
|
||||
javascript = { { 'prettierd', 'prettier' } },
|
||||
},
|
||||
}
|
||||
|
||||
vim.api.nvim_create_autocmd('BufWritePre', {
|
||||
pattern = '*',
|
||||
callback = function(args)
|
||||
require('conform').format { bufnr = args.buf }
|
||||
end,
|
||||
})
|
||||
|
|
@ -1,64 +1,83 @@
|
|||
-- [[ Configure LSP ]]
|
||||
local lsp = require("lsp-zero")
|
||||
local lsp = require 'lsp-zero'
|
||||
|
||||
lsp.preset("recommended")
|
||||
lsp.preset 'recommended'
|
||||
|
||||
lsp.ensure_installed({
|
||||
'gopls',
|
||||
'pyright',
|
||||
'tsserver',
|
||||
'rust_analyzer',
|
||||
})
|
||||
lsp.ensure_installed {
|
||||
'gopls',
|
||||
'pyright',
|
||||
'tsserver',
|
||||
'rust_analyzer',
|
||||
}
|
||||
|
||||
-- Fix Undefined global 'vim'
|
||||
lsp.nvim_workspace()
|
||||
|
||||
|
||||
local cmp = require('cmp')
|
||||
local cmp = require 'cmp'
|
||||
local cmp_select = { behavior = cmp.SelectBehavior.Select }
|
||||
local cmp_mappings = lsp.defaults.cmp_mappings({
|
||||
['<C-p>'] = cmp.mapping.select_prev_item(cmp_select),
|
||||
['<C-n>'] = cmp.mapping.select_next_item(cmp_select),
|
||||
['<C-y>'] = cmp.mapping.confirm({ select = true }),
|
||||
["<C-Space>"] = cmp.mapping.complete(),
|
||||
})
|
||||
local cmp_mappings = lsp.defaults.cmp_mappings {
|
||||
['<C-p>'] = cmp.mapping.select_prev_item(cmp_select),
|
||||
['<C-n>'] = cmp.mapping.select_next_item(cmp_select),
|
||||
['<C-y>'] = cmp.mapping.confirm { select = true },
|
||||
['<C-Space>'] = cmp.mapping.complete(),
|
||||
}
|
||||
|
||||
cmp_mappings['<Tab>'] = nil
|
||||
cmp_mappings['<S-Tab>'] = nil
|
||||
|
||||
lsp.setup_nvim_cmp({
|
||||
mapping = cmp_mappings
|
||||
})
|
||||
lsp.setup_nvim_cmp {
|
||||
mapping = cmp_mappings,
|
||||
}
|
||||
|
||||
lsp.set_preferences({
|
||||
suggest_lsp_servers = false,
|
||||
sign_icons = {
|
||||
error = '⛔️',
|
||||
warn = '⚠️',
|
||||
hint = '🧐',
|
||||
info = 'I'
|
||||
}
|
||||
})
|
||||
lsp.set_preferences {
|
||||
suggest_lsp_servers = false,
|
||||
sign_icons = {
|
||||
error = '⛔️',
|
||||
warn = '⚠️',
|
||||
hint = '🧐',
|
||||
info = 'I',
|
||||
},
|
||||
}
|
||||
|
||||
lsp.on_attach(function(_, bufnr)
|
||||
local opts = { buffer = bufnr, remap = false }
|
||||
local opts = { buffer = bufnr, remap = false }
|
||||
|
||||
vim.keymap.set("n", "gd", function() vim.lsp.buf.definition() end, opts)
|
||||
vim.keymap.set("n", "gD", function() vim.lsp.buf.declaration() end, opts)
|
||||
vim.keymap.set("n", "K", function() vim.lsp.buf.hover() end, opts)
|
||||
vim.keymap.set("n", "<leader>vws", function() vim.lsp.buf.workspace_symbol() end, opts)
|
||||
vim.keymap.set("n", "<leader>vd", function() vim.diagnostic.open_float() end, opts)
|
||||
vim.keymap.set("n", "[d", function() vim.diagnostic.goto_next() end, opts)
|
||||
vim.keymap.set("n", "]d", function() vim.diagnostic.goto_prev() end, opts)
|
||||
vim.keymap.set("n", "<leader>ca", function() vim.lsp.buf.code_action() end, opts)
|
||||
vim.keymap.set("n", "gr", require('telescope.builtin').lsp_references, opts)
|
||||
vim.keymap.set("n", "<leader>rn", function() vim.lsp.buf.rename() end, opts)
|
||||
vim.keymap.set("i", "<C-h>", function() vim.lsp.buf.signature_help() end, opts)
|
||||
vim.keymap.set("n", "<leader>lf", vim.lsp.buf.format, { desc = 'Format Buffer' })
|
||||
vim.keymap.set('n', 'gd', function()
|
||||
vim.lsp.buf.definition()
|
||||
end, opts)
|
||||
vim.keymap.set('n', 'gD', function()
|
||||
vim.lsp.buf.declaration()
|
||||
end, opts)
|
||||
vim.keymap.set('n', 'K', function()
|
||||
vim.lsp.buf.hover()
|
||||
end, opts)
|
||||
vim.keymap.set('n', '<leader>vws', function()
|
||||
vim.lsp.buf.workspace_symbol()
|
||||
end, opts)
|
||||
vim.keymap.set('n', '<leader>vd', function()
|
||||
vim.diagnostic.open_float()
|
||||
end, opts)
|
||||
vim.keymap.set('n', '[d', function()
|
||||
vim.diagnostic.goto_next()
|
||||
end, opts)
|
||||
vim.keymap.set('n', ']d', function()
|
||||
vim.diagnostic.goto_prev()
|
||||
end, opts)
|
||||
vim.keymap.set('n', '<leader>ca', function()
|
||||
vim.lsp.buf.code_action()
|
||||
end, opts)
|
||||
vim.keymap.set('n', 'gr', require('telescope.builtin').lsp_references, opts)
|
||||
vim.keymap.set('n', '<leader>rn', function()
|
||||
vim.lsp.buf.rename()
|
||||
end, opts)
|
||||
--[[ vim.keymap.set("i", "<C-h>", function() vim.lsp.buf.signature_help() end, opts) ]]
|
||||
vim.keymap.set('n', '<leader>lf', function()
|
||||
require('conform').format()
|
||||
end, { desc = 'Format Buffer' })
|
||||
end)
|
||||
|
||||
lsp.setup()
|
||||
|
||||
vim.diagnostic.config({
|
||||
virtual_text = true
|
||||
})
|
||||
vim.diagnostic.config {
|
||||
virtual_text = true,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue