Use null-ls and mason

This commit is contained in:
juan 2022-09-16 17:36:17 +08:00
parent a4f9ba5719
commit f94ba6234b
Signed by: juan
GPG Key ID: 5C1E5093C74F1DC7
5 changed files with 236 additions and 209 deletions

View File

@ -1,11 +1,11 @@
local map = vim.api.nvim_set_keymap
-- generic mappings
map('v', '<', '<gv', {noremap = true})
map('v', '>', '>gv', {noremap = true})
map('n', 'Y', 'y$', {noremap = true})
map('n', 'n', 'nzzzv', {noremap = true})
map('n', 'N', 'Nzzzv', {noremap = true})
map('v', '<', '<gv', { noremap = true })
map('v', '>', '>gv', { noremap = true })
map('n', 'Y', 'y$', { noremap = true })
map('n', 'n', 'nzzzv', { noremap = true })
map('n', 'N', 'Nzzzv', { noremap = true })
-- Shortcutting split navigation
map('', '<A-h>', '<C-w>h', {})
@ -23,38 +23,41 @@ map('', '<M-->', '<C-w>-', {})
map('', '<A-T>', '<C-w>T', {})
-- undo to the last , . or !
map('i', ',', ',<c-g>u', {noremap = true})
map('i', '.', '.<c-g>u', {noremap = true})
map('i', '!', '!<c-g>u', {noremap = true})
map('i', '?', '?<c-g>u', {noremap = true})
map('i', ',', ',<c-g>u', { noremap = true })
map('i', '.', '.<c-g>u', { noremap = true })
map('i', '!', '!<c-g>u', { noremap = true })
map('i', '?', '?<c-g>u', { noremap = true })
-- plugin mappings
-- gitsigns
map('', '<leader>gs', ':Gitsigns toggle_signs<cr>', {silent = true})
map('', '<leader>gs', ':Gitsigns toggle_signs<cr>', { silent = true })
-- lsp stuff
map('n', 'gd', '<Cmd>lua vim.lsp.buf.definition()<CR>',
{silent = false, noremap = true})
map('n', 'K', '<cmd>lua vim.lsp.buf.hover()<CR>', {noremap = true})
{ silent = false, noremap = true })
map('n', 'K', '<cmd>lua vim.lsp.buf.hover()<CR>', { noremap = true })
map('', '<leader>K', '<cmd>lua vim.diagnostic.open_float()<CR>',
{noremap = true})
{ noremap = true })
map('', '<leader>qf',
'<cmd>lua vim.diagnostic.setqflist({open = false})<cr><cmd>Telescope quickfix<cr>',
{silent = true})
'<cmd>lua vim.diagnostic.setqflist({open = false})<cr><cmd>Telescope quickfix<cr>',
{ silent = true })
-- toggle tagbar
map('', '<leader>tt', ':TagbarToggle<cr>', {silent = true})
map('', '<leader>tt', ':TagbarToggle<cr>', { silent = true })
-- toggle NvimTree
map('', '<C-n>', ':NvimTreeToggle<cr>', {silent = true})
map('', '<C-n>', ':NvimTreeToggle<cr>', { silent = true })
-- toggle formatter
map('', '<leader>fm', ':Neoformat<cr>', {silent = true})
map('', '<leader>fm', ':lua vim.lsp.buf.formatting()<cr>', { silent = true })
-- toggle Hop
map('', '<leader>b', ':HopWordBC<cr>', {silent = true})
map('', '<leader>w', ':HopWordAC<cr>', {silent = true})
map('', '<leader>l', ':HopWordCurrentLine<cr>', {silent = true})
map('', '<leader>b', ':HopWordBC<cr>', { silent = true })
map('', '<leader>w', ':HopWordAC<cr>', { silent = true })
map('', '<leader>l', ':HopWordCurrentLine<cr>', { silent = true })
-- telescope stuff
map('', '<leader>fd', ':Telescope fd<cr>', {silent = true})
map('', '<leader>tb', ':Telescope buffers<cr>', {silent = true})
map('', '<leader>fd', ':Telescope fd<cr>',
{ silent = true })
map('', '<leader>tb', ':Telescope buffers<cr>', { silent = true })

View File

@ -1,182 +1,190 @@
return require('packer').startup(function(use)
use {'wbthomason/packer.nvim'}
use { 'wbthomason/packer.nvim' }
-- core UI
use({
'juancldcmt/sere-forest',
config = function()
vim.g.everforest_better_performance = 1
vim.g.everforest_enable_italic = 1
vim.g.everforest_transparent_background = 1
vim.cmd('colorscheme everforest')
end
})
use {'kyazdani42/nvim-web-devicons'}
use {
'nvim-lualine/lualine.nvim',
after = {'nvim-web-devicons'},
config = function() require 'plugins.statusline' end
}
-- use {
-- 'romgrk/barbar.nvim',
-- requires = {'kyazdani42/nvim-web-devicons'},
-- event = 'BufAdd',
-- after = {'nvim-web-devicons'},
-- config = function() require 'plugins.barbar' end
-- }
-- core UI
use({
'juancldcmt/sere-forest',
config = function()
vim.g.everforest_better_performance = 1
vim.g.everforest_enable_italic = 1
vim.g.everforest_transparent_background = 1
vim.cmd('colorscheme everforest')
end
})
use { 'kyazdani42/nvim-web-devicons' }
use {
'nvim-lualine/lualine.nvim',
after = { 'nvim-web-devicons' },
config = function() require 'plugins.statusline' end
}
-- use {
-- 'romgrk/barbar.nvim',
-- requires = {'kyazdani42/nvim-web-devicons'},
-- event = 'BufAdd',
-- after = {'nvim-web-devicons'},
-- config = function() require 'plugins.barbar' end
-- }
-- lsp stuff
use {'neovim/nvim-lspconfig', event = 'UIEnter'}
use {
'williamboman/nvim-lsp-installer',
after = 'nvim-lspconfig',
config = function() require 'plugins.lspinstall' end
}
use {'hrsh7th/cmp-nvim-lsp', after = 'nvim-lsp-installer'}
use {
'ray-x/lsp_signature.nvim',
after = 'nvim-lsp-installer',
config = function() require 'plugins.lsp-signature' end
}
-- lsp stuff
use {
'neovim/nvim-lspconfig',
after = "mason-lspconfig.nvim",
config = function() require 'plugins.lsp' end
}
use { 'williamboman/mason-lspconfig.nvim', after = 'mason.nvim' }
use { 'hrsh7th/cmp-nvim-lsp', after = 'nvim-lspconfig' }
use {
'ray-x/lsp_signature.nvim',
after = 'nvim-lspconfig',
config = function() require 'plugins.lsp-signature' end
}
-- tree sitter
use {
'nvim-treesitter/nvim-treesitter',
event = 'UIEnter',
config = function() require 'plugins.treesitter' end,
run = ':TSUpdate'
}
-- tree sitter
use {
'nvim-treesitter/nvim-treesitter',
event = 'UIEnter',
config = function() require 'plugins.treesitter' end,
run = ':TSUpdate'
}
-- completer
use {'L3MON4D3/LuaSnip', event = 'UIEnter'}
use {
'hrsh7th/nvim-cmp',
event = 'InsertEnter',
after = {'LuaSnip', 'cmp-nvim-lsp', 'nvim-treesitter'},
config = function() require 'plugins.cmp' end,
requires = {
-- local
{'hrsh7th/cmp-cmdline', after = 'nvim-cmp'},
{'hrsh7th/cmp-buffer', after = 'nvim-cmp'},
{'hrsh7th/cmp-path', after = 'nvim-cmp'}, {
'petertriho/cmp-git',
after = 'nvim-cmp',
config = function() require("cmp_git").setup() end
}, {'delphinus/cmp-ctags', after = 'nvim-cmp'}, -- end
-- lsp
{'hrsh7th/cmp-nvim-lsp-document-symbol', after = 'nvim-cmp'}, -- TS
{'ray-x/cmp-treesitter', after = 'nvim-cmp'}, -- end
-- Snip
{'saadparwaiz1/cmp_luasnip', after = {'nvim-cmp', 'LuaSnip'}}
}
}
-- completer
use { 'L3MON4D3/LuaSnip', event = 'UIEnter' }
use {
'hrsh7th/nvim-cmp',
event = 'InsertEnter',
after = { 'LuaSnip', 'cmp-nvim-lsp', 'nvim-treesitter' },
config = function() require 'plugins.cmp' end,
requires = {
-- local
{ 'hrsh7th/cmp-cmdline', after = 'nvim-cmp' },
{ 'hrsh7th/cmp-buffer', after = 'nvim-cmp' },
{ 'hrsh7th/cmp-path', after = 'nvim-cmp' }, {
'petertriho/cmp-git',
after = 'nvim-cmp',
config = function() require("cmp_git").setup() end
}, { 'delphinus/cmp-ctags', after = 'nvim-cmp' }, -- end
-- lsp
{ 'hrsh7th/cmp-nvim-lsp-document-symbol', after = 'nvim-cmp' }, -- TS
{ 'ray-x/cmp-treesitter', after = 'nvim-cmp' }, -- end
-- Snip
{ 'saadparwaiz1/cmp_luasnip', after = { 'nvim-cmp', 'LuaSnip' } }
}
}
-- formating and editing
use {
'windwp/nvim-autopairs',
after = 'nvim-cmp',
config = function() require('plugins.nvim-autopairs') end
}
use {'sbdchd/neoformat', cmd = 'Neoformat'}
use {
'mattn/emmet-vim',
ft = {'html', 'htmldjango', 'css', 'markdown'},
setup = function() require 'plugins.emmet' end
}
use {'machakann/vim-sandwich', event = 'UIEnter'}
-- formating and editing
use { "williamboman/mason.nvim", event = "UIEnter" }
use {
'windwp/nvim-autopairs',
after = 'nvim-cmp',
config = function() require('plugins.nvim-autopairs') end
}
use {
"jose-elias-alvarez/null-ls.nvim",
config = function()
require('plugins.null-ls')
end,
requires = { "nvim-lua/plenary.nvim" },
event = "CmdlineEnter"
}
use {
'mattn/emmet-vim',
ft = { 'html', 'htmldjango', 'css', 'markdown' },
setup = function() require 'plugins.emmet' end
}
use { 'machakann/vim-sandwich', event = 'UIEnter' }
use {
'numToStr/Comment.nvim',
event = 'UIEnter',
config = function() require('Comment').setup() end
}
use {
'numToStr/Comment.nvim',
event = 'UIEnter',
config = function() require('Comment').setup() end
}
-- navigation
use {
'kyazdani42/nvim-tree.lua',
cmd = 'NvimTreeToggle',
requires = 'kyazdani42/nvim-web-devicons',
config = function() require('plugins.nvim-tree') end
}
use {
'andymass/vim-matchup',
after = 'nvim-treesitter',
config = function() require 'plugins.matchup' end
}
use {
'abecodes/tabout.nvim',
config = function() require('tabout').setup {} end,
after = {'nvim-treesitter', 'nvim-autopairs', 'nvim-cmp'} -- if a completion plugin is using tabs load it before
}
use {
'nvim-telescope/telescope.nvim',
event = 'UIEnter',
requires = {'nvim-lua/plenary.nvim'},
config = function() require 'plugins.telescope' end
}
use {'preservim/tagbar', cmd = 'TagbarToggle'}
use {
'phaazon/hop.nvim',
event = 'UIEnter',
as = 'hop',
config = function()
require'hop'.setup {keys = 'etovxqpdygfblzhckisuran'}
end
}
-- navigation
use {
'kyazdani42/nvim-tree.lua',
cmd = 'NvimTreeToggle',
requires = 'kyazdani42/nvim-web-devicons',
config = function() require('plugins.nvim-tree') end
}
use {
'andymass/vim-matchup',
after = 'nvim-treesitter',
config = function() require 'plugins.matchup' end
}
use {
'abecodes/tabout.nvim',
config = function() require('tabout').setup {} end,
after = { 'nvim-treesitter', 'nvim-autopairs', 'nvim-cmp' } -- if a completion plugin is using tabs load it before
}
use {
'nvim-telescope/telescope.nvim',
event = 'UIEnter',
requires = { 'nvim-lua/plenary.nvim' },
config = function() require 'plugins.telescope' end
}
use { 'preservim/tagbar', cmd = 'TagbarToggle' }
use {
'phaazon/hop.nvim',
event = 'UIEnter',
as = 'hop',
config = function()
require 'hop'.setup { keys = 'etovxqpdygfblzhckisuran' }
end
}
-- eye-candy
use {
'lukas-reineke/indent-blankline.nvim',
after = {'nvim-treesitter'},
config = function() require 'plugins.indent-blankline' end
}
use {
'lewis6991/gitsigns.nvim',
event = 'UIEnter',
requires = {'nvim-lua/plenary.nvim'},
config = function() require 'plugins.gitsigns' end
}
use {
'p00f/nvim-ts-rainbow',
after = 'nvim-treesitter',
config = function() require 'plugins.nvim-ts-rainbow' end
}
use {
'nvim-treesitter/nvim-treesitter-context',
after = 'nvim-treesitter',
config = function()
require'treesitter-context'.setup {
enable = true, -- Enable this plugin (Can be enabled/disabled later via commands)
max_lines = 0, -- How many lines the window should span. Values <= 0 mean no limit.
patterns = { -- Match patterns for TS nodes. These get wrapped to match at word boundaries.
-- For all filetypes
-- Note that setting an entry here replaces all other patterns for this entry.
-- By setting the 'default' entry below, you can control which nodes you want to
-- appear in the context window.
default = {
'class', 'function', 'method', 'for', -- These won't appear in the context
'while', 'if', 'switch', 'case'
}
}
}
end
}
use {
'winston0410/range-highlight.nvim',
event = 'CmdlineEnter',
config = function() require('range-highlight').setup {} end,
requires = 'winston0410/cmd-parser.nvim'
}
use {
'norcalli/nvim-colorizer.lua',
event = 'BufEnter',
config = function() require 'plugins.nvim-colorizer' end
}
-- eye-candy
use {
'lukas-reineke/indent-blankline.nvim',
after = { 'nvim-treesitter' },
config = function() require 'plugins.indent-blankline' end
}
use {
'lewis6991/gitsigns.nvim',
event = 'UIEnter',
requires = { 'nvim-lua/plenary.nvim' },
config = function() require 'plugins.gitsigns' end
}
use {
'p00f/nvim-ts-rainbow',
after = 'nvim-treesitter',
config = function() require 'plugins.nvim-ts-rainbow' end
}
use {
'nvim-treesitter/nvim-treesitter-context',
after = 'nvim-treesitter',
config = function()
require 'treesitter-context'.setup {
enable = true, -- Enable this plugin (Can be enabled/disabled later via commands)
max_lines = 0, -- How many lines the window should span. Values <= 0 mean no limit.
patterns = { -- Match patterns for TS nodes. These get wrapped to match at word boundaries.
-- For all filetypes
-- Note that setting an entry here replaces all other patterns for this entry.
-- By setting the 'default' entry below, you can control which nodes you want to
-- appear in the context window.
default = {
'class', 'function', 'method', 'for', -- These won't appear in the context
'while', 'if', 'switch', 'case'
}
}
}
end
}
use {
'winston0410/range-highlight.nvim',
event = 'CmdlineEnter',
config = function() require('range-highlight').setup {} end,
requires = 'winston0410/cmd-parser.nvim'
}
use {
'norcalli/nvim-colorizer.lua',
event = 'BufEnter',
config = function() require 'plugins.nvim-colorizer' end
}
-- integrations
use {'tpope/vim-fugitive', cmd = 'G'}
-- integrations
use { 'tpope/vim-fugitive', cmd = 'G' }
-- fixes and misc. stuff
use {'antoinemadec/FixCursorHold.nvim', event = 'UIEnter'}
-- fixes and misc. stuff
use { 'antoinemadec/FixCursorHold.nvim', event = 'UIEnter' }
end)
-- vim:set shiftwidth=4 tabstop=4:

15
lua/plugins/lsp.lua Normal file
View File

@ -0,0 +1,15 @@
require("mason").setup {ui = {icons = {package_installed = ""}}}
require("mason-lspconfig").setup {ensure_installed = {"sumneko_lua"}}
-- Dynamic loading of lsp servers
require("mason-lspconfig").setup_handlers {
-- The first entry (without a key) will be the default handler
-- and will be called for each installed server that doesn't have
-- a dedicated handler.
function(server_name) -- default handler (optional)
require("lspconfig")[server_name].setup {}
end,
-- Next, you can provide targeted overrides for specific servers.
-- For example, a handler override for the `rust_analyzer`:
["rust_analyzer"] = function() require("rust-tools").setup {} end
}

View File

@ -1,17 +0,0 @@
local lsp_installer = require("nvim-lsp-installer")
-- Register a handler that will be called for all installed servers.
-- Alternatively, you may also register handlers on specific server instances instead (see example below).
lsp_installer.on_server_ready(function(server)
local opts = {}
-- (optional) Customize the options passed to the server
-- if server.name == "tsserver" then
-- opts.root_dir = function() ... end
-- end
-- This setup() function is exactly the same as lspconfig's setup function.
-- Refer to https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
server:setup(opts)
end)

18
lua/plugins/null-ls.lua Normal file
View File

@ -0,0 +1,18 @@
local null_ls = require("null-ls")
-- builtins
-- local code_actions = null_ls.builtins.code_actions
local diagnostics = null_ls.builtins.diagnostics
local formatting = null_ls.builtins.formatting
local hover = null_ls.builtins.hover
local completion = null_ls.builtins.completion
local sources = {
code_actions,
diagnostics,
formatting,
hover,
completion
}
null_ls.setup({ sources = sources })