update nvim
This commit is contained in:
parent
f0f0a978a0
commit
eb9c12d6bb
@ -13,7 +13,6 @@ M.list = {
|
|||||||
-- View.
|
-- View.
|
||||||
'EdenEast/nightfox.nvim',
|
'EdenEast/nightfox.nvim',
|
||||||
'lukas-reineke/indent-blankline.nvim',
|
'lukas-reineke/indent-blankline.nvim',
|
||||||
-- 'nvim-lualine/lualine.nvim',
|
|
||||||
|
|
||||||
-- Lsp.
|
-- Lsp.
|
||||||
'neovim/nvim-lspconfig',
|
'neovim/nvim-lspconfig',
|
||||||
@ -22,8 +21,7 @@ M.list = {
|
|||||||
'hrsh7th/cmp-nvim-lsp',
|
'hrsh7th/cmp-nvim-lsp',
|
||||||
|
|
||||||
--- Null-ls.
|
--- Null-ls.
|
||||||
-- 'jose-elias-alvarez/null-ls.nvim',
|
'jose-elias-alvarez/null-ls.nvim',
|
||||||
'MunifTanjim/prettier.nvim',
|
|
||||||
|
|
||||||
-- Autocompletion
|
-- Autocompletion
|
||||||
'L3MON4D3/LuaSnip',
|
'L3MON4D3/LuaSnip',
|
||||||
@ -40,14 +38,12 @@ M.init = function()
|
|||||||
-- View.
|
-- View.
|
||||||
require('axp.plugins.nightfox')
|
require('axp.plugins.nightfox')
|
||||||
require('axp.plugins.blankline')
|
require('axp.plugins.blankline')
|
||||||
-- require('axp.plugins.lualine')
|
|
||||||
|
|
||||||
-- Lsp.
|
-- Lsp.
|
||||||
require('axp.plugins.lsp')
|
require('axp.plugins.lsp')
|
||||||
|
|
||||||
-- Null-ls.
|
-- Null-ls.
|
||||||
-- require('axp.plugins.null-ls')
|
require('axp.plugins.null-ls')
|
||||||
require('axp.plugins.prettier')
|
|
||||||
|
|
||||||
-- Autocompletion
|
-- Autocompletion
|
||||||
require('axp.plugins.luasnip')
|
require('axp.plugins.luasnip')
|
||||||
|
@ -36,45 +36,17 @@ local servers = {
|
|||||||
|
|
||||||
-- This function gets run when an LSP connects to a particular buffer.
|
-- This function gets run when an LSP connects to a particular buffer.
|
||||||
local on_attach = function(_, bufnr)
|
local on_attach = function(_, bufnr)
|
||||||
-- NOTE: Remember that lua is a real programming language, and as such it is possible
|
vim.keymap.set('n', '<leader>rn', vim.lsp.buf.rename)
|
||||||
-- to define small helper and utility functions so you don't have to repeat yourself
|
vim.keymap.set('n', '<leader>ca', vim.lsp.buf.code_action)
|
||||||
-- many times.
|
|
||||||
|
|
||||||
-- In this case, we create a function that lets us more easily define mappings specific
|
-- LSP functionality
|
||||||
-- for LSP related items. It sets the mode, buffer and description for us each time.
|
vim.keymap.set('n', 'gI', vim.lsp.buf.implementation)
|
||||||
local nmap = function(keys, func, desc)
|
vim.keymap.set('n', 'gd', vim.lsp.buf.definition)
|
||||||
if desc then
|
vim.keymap.set('n', 'gD', vim.lsp.buf.declaration)
|
||||||
desc = 'LSP: ' .. desc
|
vim.keymap.set('n', '<leader>D', vim.lsp.buf.type_definition)
|
||||||
end
|
vim.keymap.set('n', 'K', vim.lsp.buf.hover)
|
||||||
vim.keymap.set('n', keys, func, { buffer = bufnr, desc = desc })
|
vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help)
|
||||||
end
|
|
||||||
|
|
||||||
nmap('<leader>rn', vim.lsp.buf.rename, '[R]e[n]ame')
|
|
||||||
nmap('<leader>ca', vim.lsp.buf.code_action, '[C]ode [A]ction')
|
|
||||||
|
|
||||||
nmap('gd', vim.lsp.buf.definition, '[G]oto [D]efinition')
|
|
||||||
nmap('gr', require('telescope.builtin').lsp_references, '[G]oto [R]eferences')
|
|
||||||
nmap('gI', vim.lsp.buf.implementation, '[G]oto [I]mplementation')
|
|
||||||
nmap('<leader>D', vim.lsp.buf.type_definition, 'Type [D]efinition')
|
|
||||||
nmap('<leader>ds', require('telescope.builtin').lsp_document_symbols, '[D]ocument [S]ymbols')
|
|
||||||
nmap('<leader>ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols')
|
|
||||||
|
|
||||||
-- See `:help K` for why this keymap
|
|
||||||
nmap('K', vim.lsp.buf.hover, 'Hover Documentation')
|
|
||||||
nmap('<C-k>', vim.lsp.buf.signature_help, 'Signature Documentation')
|
|
||||||
|
|
||||||
-- Lesser used LSP functionality
|
|
||||||
nmap('gD', vim.lsp.buf.declaration, '[G]oto [D]eclaration')
|
|
||||||
nmap('<leader>wa', vim.lsp.buf.add_workspace_folder, '[W]orkspace [A]dd Folder')
|
|
||||||
nmap('<leader>wr', vim.lsp.buf.remove_workspace_folder, '[W]orkspace [R]emove Folder')
|
|
||||||
nmap('<leader>wl', function()
|
|
||||||
print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
|
|
||||||
end, '[W]orkspace [L]ist Folders')
|
|
||||||
|
|
||||||
-- Create a command `:Format` local to the LSP buffer
|
|
||||||
-- vim.api.nvim_buf_create_user_command(bufnr, 'Format', function(_)
|
|
||||||
-- vim.lsp.buf.format()
|
|
||||||
-- end, { desc = 'Format current buffer with LSP' })
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- nvim-cmp supports additional completion capabilities, so broadcast that to servers
|
-- nvim-cmp supports additional completion capabilities, so broadcast that to servers
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
local status, lualine = pcall(require, 'lualine')
|
|
||||||
if (not status) then return end
|
|
||||||
|
|
||||||
lualine.setup {}
|
|
@ -102,6 +102,7 @@ if (status_luasnip) then
|
|||||||
M.list = {
|
M.list = {
|
||||||
javascript = javascript,
|
javascript = javascript,
|
||||||
typescript = javascript,
|
typescript = javascript,
|
||||||
|
typescriptreact = javascript,
|
||||||
vue = vue
|
vue = vue
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
@ -7,10 +7,17 @@ local formatting = null_ls.builtins.formatting
|
|||||||
|
|
||||||
-- Init.
|
-- Init.
|
||||||
null_ls.setup {
|
null_ls.setup {
|
||||||
sources = {},
|
sources = {
|
||||||
|
formatting.prettier.with({ extra_args = { "--config", prettier_config } })
|
||||||
|
},
|
||||||
on_attach = function (client, bufnr)
|
on_attach = function (client, bufnr)
|
||||||
if client.supports_method('textDocument/formatting') then
|
if client.supports_method('textDocument/formatting') then
|
||||||
print('Test textDocument/formatting')
|
print('Test textDocument/formatting')
|
||||||
|
|
||||||
|
-- Create a command `:Format` local to the LSP buffer
|
||||||
|
vim.api.nvim_buf_create_user_command(bufnr, 'Format', function(_)
|
||||||
|
vim.lsp.buf.format()
|
||||||
|
end, { desc = 'Format current buffer with LSP' })
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
@ -1,15 +0,0 @@
|
|||||||
-- Null-ls.
|
|
||||||
local status_null_ls, null_ls = pcall(require, 'null-ls')
|
|
||||||
if (not status_null_ls) then return end
|
|
||||||
|
|
||||||
-- Config.
|
|
||||||
local prettier_config = vim.fn.stdpath('config') .. '/lua/axp/plugins/null-ls/.prettierrc'
|
|
||||||
local formatting = null_ls.builtins.formatting
|
|
||||||
-- local diagnostics = null_ls.builtins.diagnostics
|
|
||||||
|
|
||||||
-- Init.
|
|
||||||
null_ls.setup {
|
|
||||||
sources = {
|
|
||||||
formatting.prettier.with({ extra_args = { "--config", prettier_config } })
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
local status, prettier = pcall(require, 'prettier')
|
|
||||||
if (not status) then return end
|
|
||||||
|
|
||||||
prettier.setup {
|
|
||||||
bin = 'prettier',
|
|
||||||
filetype = {
|
|
||||||
'html',
|
|
||||||
'typescript',
|
|
||||||
'typescriptreact',
|
|
||||||
'css',
|
|
||||||
'sass',
|
|
||||||
'scss',
|
|
||||||
'json'
|
|
||||||
}
|
|
||||||
}
|
|
@ -109,6 +109,11 @@ _G.packer_plugins = {
|
|||||||
path = "/home/antoxa/.local/share/nvim/site/pack/packer/start/nightfox.nvim",
|
path = "/home/antoxa/.local/share/nvim/site/pack/packer/start/nightfox.nvim",
|
||||||
url = "https://github.com/EdenEast/nightfox.nvim"
|
url = "https://github.com/EdenEast/nightfox.nvim"
|
||||||
},
|
},
|
||||||
|
["null-ls.nvim"] = {
|
||||||
|
loaded = true,
|
||||||
|
path = "/home/antoxa/.local/share/nvim/site/pack/packer/start/null-ls.nvim",
|
||||||
|
url = "https://github.com/jose-elias-alvarez/null-ls.nvim"
|
||||||
|
},
|
||||||
["nvim-autopairs"] = {
|
["nvim-autopairs"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/home/antoxa/.local/share/nvim/site/pack/packer/start/nvim-autopairs",
|
path = "/home/antoxa/.local/share/nvim/site/pack/packer/start/nvim-autopairs",
|
||||||
@ -139,11 +144,6 @@ _G.packer_plugins = {
|
|||||||
path = "/home/antoxa/.local/share/nvim/site/pack/packer/start/plenary.nvim",
|
path = "/home/antoxa/.local/share/nvim/site/pack/packer/start/plenary.nvim",
|
||||||
url = "https://github.com/nvim-lua/plenary.nvim"
|
url = "https://github.com/nvim-lua/plenary.nvim"
|
||||||
},
|
},
|
||||||
["prettier.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/antoxa/.local/share/nvim/site/pack/packer/start/prettier.nvim",
|
|
||||||
url = "https://github.com/MunifTanjim/prettier.nvim"
|
|
||||||
},
|
|
||||||
["telescope.nvim"] = {
|
["telescope.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/home/antoxa/.local/share/nvim/site/pack/packer/start/telescope.nvim",
|
path = "/home/antoxa/.local/share/nvim/site/pack/packer/start/telescope.nvim",
|
||||||
|
Loading…
Reference in New Issue
Block a user