mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-23 12:16:28 +02:00
fix styling issues (#811)
This commit is contained in:
parent
a9e7b6ff8c
commit
2866ba528c
11 changed files with 170 additions and 176 deletions
|
@ -5,19 +5,19 @@ vim.api.nvim_set_keymap("n", "<C-k>", "<C-w>k", { silent = true })
|
||||||
vim.api.nvim_set_keymap("n", "<C-l>", "<C-w>l", { silent = true })
|
vim.api.nvim_set_keymap("n", "<C-l>", "<C-w>l", { silent = true })
|
||||||
|
|
||||||
-- Terminal window navigation
|
-- Terminal window navigation
|
||||||
vim.api.nvim_set_keymap("t", "<C-h>", "<C-\\><C-N><C-w>h", {silent = true, noremap = true})
|
vim.api.nvim_set_keymap("t", "<C-h>", "<C-\\><C-N><C-w>h", { silent = true, noremap = true })
|
||||||
vim.api.nvim_set_keymap("t", "<C-j>", "<C-\\><C-N><C-w>j", {silent = true, noremap = true})
|
vim.api.nvim_set_keymap("t", "<C-j>", "<C-\\><C-N><C-w>j", { silent = true, noremap = true })
|
||||||
vim.api.nvim_set_keymap("t", "<C-k>", "<C-\\><C-N><C-w>k", {silent = true, noremap = true})
|
vim.api.nvim_set_keymap("t", "<C-k>", "<C-\\><C-N><C-w>k", { silent = true, noremap = true })
|
||||||
vim.api.nvim_set_keymap("t", "<C-l>", "<C-\\><C-N><C-w>l", {silent = true, noremap = true})
|
vim.api.nvim_set_keymap("t", "<C-l>", "<C-\\><C-N><C-w>l", { silent = true, noremap = true })
|
||||||
vim.api.nvim_set_keymap("i", "<C-h>", "<C-\\><C-N><C-w>h", {silent = true, noremap = true})
|
vim.api.nvim_set_keymap("i", "<C-h>", "<C-\\><C-N><C-w>h", { silent = true, noremap = true })
|
||||||
vim.api.nvim_set_keymap("i", "<C-j>", "<C-\\><C-N><C-w>j", {silent = true, noremap = true})
|
vim.api.nvim_set_keymap("i", "<C-j>", "<C-\\><C-N><C-w>j", { silent = true, noremap = true })
|
||||||
vim.api.nvim_set_keymap("i", "<C-k>", "<C-\\><C-N><C-w>k", {silent = true, noremap = true})
|
vim.api.nvim_set_keymap("i", "<C-k>", "<C-\\><C-N><C-w>k", { silent = true, noremap = true })
|
||||||
vim.api.nvim_set_keymap("i", "<C-l>", "<C-\\><C-N><C-w>l", {silent = true, noremap = true})
|
vim.api.nvim_set_keymap("i", "<C-l>", "<C-\\><C-N><C-w>l", { silent = true, noremap = true })
|
||||||
vim.api.nvim_set_keymap("t", "<Esc>", "<C-\\><C-n>", {silent = true, noremap = true})
|
vim.api.nvim_set_keymap("t", "<Esc>", "<C-\\><C-n>", { silent = true, noremap = true })
|
||||||
|
|
||||||
-- TODO fix this
|
-- TODO fix this
|
||||||
-- resize with arrows
|
-- resize with arrows
|
||||||
if vim.fn.has("mac") == 1 then
|
if vim.fn.has "mac" == 1 then
|
||||||
vim.api.nvim_set_keymap("n", "<A-Up>", ":resize -2<CR>", { silent = true })
|
vim.api.nvim_set_keymap("n", "<A-Up>", ":resize -2<CR>", { silent = true })
|
||||||
vim.api.nvim_set_keymap("n", "<A-Down>", ":resize +2<CR>", { silent = true })
|
vim.api.nvim_set_keymap("n", "<A-Down>", ":resize +2<CR>", { silent = true })
|
||||||
vim.api.nvim_set_keymap("n", "<A-Left>", ":vertical resize -2<CR>", { silent = true })
|
vim.api.nvim_set_keymap("n", "<A-Left>", ":vertical resize -2<CR>", { silent = true })
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
-- TODO find correct root filetype
|
-- TODO find correct root filetype
|
||||||
-- :LspInstall angular
|
-- :LspInstall angular
|
||||||
require'lspconfig'.angularls.setup {
|
require("lspconfig").angularls.setup {
|
||||||
cmd = {DATA_PATH .. "/lspinstall/angular/node_modules/@angular/language-server/bin/ngserver", "--stdio"},
|
cmd = { DATA_PATH .. "/lspinstall/angular/node_modules/@angular/language-server/bin/ngserver", "--stdio" },
|
||||||
on_attach = require'lsp'.common_on_attach,
|
on_attach = require("lsp").common_on_attach,
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,22 +2,22 @@
|
||||||
-- return
|
-- return
|
||||||
-- end
|
-- end
|
||||||
|
|
||||||
local nvim_lsp = require'lspconfig'
|
local nvim_lsp = require "lspconfig"
|
||||||
local configs = require'lspconfig/configs'
|
local configs = require "lspconfig/configs"
|
||||||
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
||||||
capabilities.textDocument.completion.completionItem.snippetSupport = true
|
capabilities.textDocument.completion.completionItem.snippetSupport = true
|
||||||
|
|
||||||
configs.emmet_ls = {
|
configs.emmet_ls = {
|
||||||
default_config = {
|
default_config = {
|
||||||
cmd = {'emmet-ls', '--stdio'};
|
cmd = { "emmet-ls", "--stdio" },
|
||||||
filetypes = {'html', 'css', 'javascript', 'typescript'};
|
filetypes = { "html", "css", "javascript", "typescript" },
|
||||||
root_dir = function()
|
root_dir = function()
|
||||||
return vim.loop.cwd()
|
return vim.loop.cwd()
|
||||||
end;
|
end,
|
||||||
settings = {};
|
settings = {},
|
||||||
};
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
nvim_lsp.emmet_ls.setup{
|
nvim_lsp.emmet_ls.setup {
|
||||||
-- on_attach = on_attach;
|
-- on_attach = on_attach;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,57 +1,51 @@
|
||||||
-- TODO figure out why this don't work
|
-- TODO figure out why this don't work
|
||||||
vim.fn.sign_define(
|
vim.fn.sign_define(
|
||||||
"LspDiagnosticsSignError",
|
"LspDiagnosticsSignError",
|
||||||
{texthl = "LspDiagnosticsSignError", text = "", numhl = "LspDiagnosticsSignError"}
|
{ texthl = "LspDiagnosticsSignError", text = "", numhl = "LspDiagnosticsSignError" }
|
||||||
)
|
)
|
||||||
vim.fn.sign_define(
|
vim.fn.sign_define(
|
||||||
"LspDiagnosticsSignWarning",
|
"LspDiagnosticsSignWarning",
|
||||||
{texthl = "LspDiagnosticsSignWarning", text = "", numhl = "LspDiagnosticsSignWarning"}
|
{ texthl = "LspDiagnosticsSignWarning", text = "", numhl = "LspDiagnosticsSignWarning" }
|
||||||
)
|
)
|
||||||
vim.fn.sign_define(
|
vim.fn.sign_define(
|
||||||
"LspDiagnosticsSignHint",
|
"LspDiagnosticsSignHint",
|
||||||
{texthl = "LspDiagnosticsSignHint", text = "", numhl = "LspDiagnosticsSignHint"}
|
{ texthl = "LspDiagnosticsSignHint", text = "", numhl = "LspDiagnosticsSignHint" }
|
||||||
)
|
)
|
||||||
vim.fn.sign_define(
|
vim.fn.sign_define(
|
||||||
"LspDiagnosticsSignInformation",
|
"LspDiagnosticsSignInformation",
|
||||||
{texthl = "LspDiagnosticsSignInformation", text = "", numhl = "LspDiagnosticsSignInformation"}
|
{ texthl = "LspDiagnosticsSignInformation", text = "", numhl = "LspDiagnosticsSignInformation" }
|
||||||
)
|
)
|
||||||
|
|
||||||
vim.cmd("nnoremap <silent> gd <cmd>lua vim.lsp.buf.definition()<CR>")
|
vim.cmd "nnoremap <silent> gd <cmd>lua vim.lsp.buf.definition()<CR>"
|
||||||
vim.cmd("nnoremap <silent> gD <cmd>lua vim.lsp.buf.declaration()<CR>")
|
vim.cmd "nnoremap <silent> gD <cmd>lua vim.lsp.buf.declaration()<CR>"
|
||||||
vim.cmd("nnoremap <silent> gr <cmd>lua vim.lsp.buf.references()<CR>")
|
vim.cmd "nnoremap <silent> gr <cmd>lua vim.lsp.buf.references()<CR>"
|
||||||
vim.cmd("nnoremap <silent> gi <cmd>lua vim.lsp.buf.implementation()<CR>")
|
vim.cmd "nnoremap <silent> gi <cmd>lua vim.lsp.buf.implementation()<CR>"
|
||||||
vim.cmd("nnoremap <silent> K :lua vim.lsp.buf.hover()<CR>")
|
vim.cmd "nnoremap <silent> K :lua vim.lsp.buf.hover()<CR>"
|
||||||
-- vim.cmd('nnoremap <silent> <C-k> <cmd>lua vim.lsp.buf.signature_help()<CR>')
|
-- vim.cmd('nnoremap <silent> <C-k> <cmd>lua vim.lsp.buf.signature_help()<CR>')
|
||||||
vim.cmd("nnoremap <silent> <C-p> :lua vim.lsp.diagnostic.goto_prev({popup_opts = {border = O.lsp.popup_border}})<CR>")
|
vim.cmd "nnoremap <silent> <C-p> :lua vim.lsp.diagnostic.goto_prev({popup_opts = {border = O.lsp.popup_border}})<CR>"
|
||||||
vim.cmd("nnoremap <silent> <C-n> :lua vim.lsp.diagnostic.goto_next({popup_opts = {border = O.lsp.popup_border}})<CR>")
|
vim.cmd "nnoremap <silent> <C-n> :lua vim.lsp.diagnostic.goto_next({popup_opts = {border = O.lsp.popup_border}})<CR>"
|
||||||
-- scroll down hover doc or scroll in definition preview
|
-- scroll down hover doc or scroll in definition preview
|
||||||
-- scroll up hover doc
|
-- scroll up hover doc
|
||||||
vim.cmd('command! -nargs=0 LspVirtualTextToggle lua require("lsp/virtual_text").toggle()')
|
vim.cmd 'command! -nargs=0 LspVirtualTextToggle lua require("lsp/virtual_text").toggle()'
|
||||||
|
|
||||||
-- Set Default Prefix.
|
-- Set Default Prefix.
|
||||||
-- Note: You can set a prefix per lsp server in the lv-globals.lua file
|
-- Note: You can set a prefix per lsp server in the lv-globals.lua file
|
||||||
vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(
|
vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(vim.lsp.diagnostic.on_publish_diagnostics, {
|
||||||
vim.lsp.diagnostic.on_publish_diagnostics, {
|
|
||||||
virtual_text = {
|
virtual_text = {
|
||||||
prefix = "",
|
prefix = "",
|
||||||
spacing = 0,
|
spacing = 0,
|
||||||
},
|
},
|
||||||
signs = true,
|
signs = true,
|
||||||
underline = true,
|
underline = true,
|
||||||
}
|
})
|
||||||
)
|
|
||||||
|
|
||||||
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(
|
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, {
|
||||||
vim.lsp.handlers.hover, {
|
border = O.lsp.popup_border,
|
||||||
border = O.lsp.popup_border
|
})
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(
|
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.signature_help, {
|
||||||
vim.lsp.handlers.signature_help, {
|
border = O.lsp.popup_border,
|
||||||
border = O.lsp.popup_border
|
})
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
-- symbols for autocomplete
|
-- symbols for autocomplete
|
||||||
vim.lsp.protocol.CompletionItemKind = {
|
vim.lsp.protocol.CompletionItemKind = {
|
||||||
|
@ -79,7 +73,7 @@ vim.lsp.protocol.CompletionItemKind = {
|
||||||
" ﳤ (Struct)",
|
" ﳤ (Struct)",
|
||||||
" (Event)",
|
" (Event)",
|
||||||
" (Operator)",
|
" (Operator)",
|
||||||
" (TypeParameter)"
|
" (TypeParameter)",
|
||||||
}
|
}
|
||||||
|
|
||||||
--[[ " autoformat
|
--[[ " autoformat
|
||||||
|
@ -119,7 +113,7 @@ function lsp_config.tsserver_on_attach(client, bufnr)
|
||||||
-- lsp_config.common_on_attach(client, bufnr)
|
-- lsp_config.common_on_attach(client, bufnr)
|
||||||
client.resolved_capabilities.document_formatting = false
|
client.resolved_capabilities.document_formatting = false
|
||||||
|
|
||||||
local ts_utils = require("nvim-lsp-ts-utils")
|
local ts_utils = require "nvim-lsp-ts-utils"
|
||||||
|
|
||||||
-- defaults
|
-- defaults
|
||||||
ts_utils.setup {
|
ts_utils.setup {
|
||||||
|
@ -160,12 +154,11 @@ function lsp_config.tsserver_on_attach(client, bufnr)
|
||||||
-- vim.api.nvim_buf_set_keymap(bufnr, "n", "gi", ":TSLspImportAll<CR>", {silent = true})
|
-- vim.api.nvim_buf_set_keymap(bufnr, "n", "gi", ":TSLspImportAll<CR>", {silent = true})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
require("lv-utils").define_augroups {
|
||||||
require('lv-utils').define_augroups({
|
|
||||||
_general_lsp = {
|
_general_lsp = {
|
||||||
{'FileType', 'lspinfo', 'nnoremap <silent> <buffer> q :q<CR>'},
|
{ "FileType", "lspinfo", "nnoremap <silent> <buffer> q :q<CR>" },
|
||||||
}
|
},
|
||||||
})
|
}
|
||||||
|
|
||||||
-- Use a loop to conveniently both setup defined servers
|
-- Use a loop to conveniently both setup defined servers
|
||||||
-- and map buffer local keybindings when the language server attaches
|
-- and map buffer local keybindings when the language server attaches
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
-- TODO what is a svelte filetype
|
-- TODO what is a svelte filetype
|
||||||
require'lspconfig'.svelte.setup {
|
require("lspconfig").svelte.setup {
|
||||||
cmd = {DATA_PATH .. "/lspinstall/svelte/node_modules/.bin/svelteserver", "--stdio"},
|
cmd = { DATA_PATH .. "/lspinstall/svelte/node_modules/.bin/svelteserver", "--stdio" },
|
||||||
on_attach = require'lsp'.common_on_attach
|
on_attach = require("lsp").common_on_attach,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
-- TODO what is a tailwindcss filetype
|
-- TODO what is a tailwindcss filetype
|
||||||
local lspconfig = require 'lspconfig'
|
local lspconfig = require "lspconfig"
|
||||||
|
|
||||||
lspconfig.tailwindcss.setup {
|
lspconfig.tailwindcss.setup {
|
||||||
cmd = {
|
cmd = {
|
||||||
"node", DATA_PATH .. "/lspinstall/tailwindcss/tailwindcss-intellisense/extension/dist/server/tailwindServer.js",
|
"node",
|
||||||
"--stdio"
|
DATA_PATH .. "/lspinstall/tailwindcss/tailwindcss-intellisense/extension/dist/server/tailwindServer.js",
|
||||||
|
"--stdio",
|
||||||
},
|
},
|
||||||
filetypes = O.lang.tailwindcss.filetypes,
|
filetypes = O.lang.tailwindcss.filetypes,
|
||||||
root_dir = require("lspconfig/util").root_pattern("tailwind.config.js", "postcss.config.ts", ".postcssrc"),
|
root_dir = require("lspconfig/util").root_pattern("tailwind.config.js", "postcss.config.ts", ".postcssrc"),
|
||||||
on_attach = require'lsp'.common_on_attach
|
on_attach = require("lsp").common_on_attach,
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,30 +7,30 @@ M.setup = function()
|
||||||
|
|
||||||
local prettier = {
|
local prettier = {
|
||||||
formatCommand = "prettier --stdin-filepath ${INPUT}",
|
formatCommand = "prettier --stdin-filepath ${INPUT}",
|
||||||
formatStdin = true
|
formatStdin = true,
|
||||||
}
|
}
|
||||||
|
|
||||||
if vim.fn.glob("node_modules/.bin/prettier") ~= "" then
|
if vim.fn.glob "node_modules/.bin/prettier" ~= "" then
|
||||||
prettier = {
|
prettier = {
|
||||||
formatCommand = "./node_modules/.bin/prettier --stdin-filepath ${INPUT}",
|
formatCommand = "./node_modules/.bin/prettier --stdin-filepath ${INPUT}",
|
||||||
formatStdin = true
|
formatStdin = true,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
require"lspconfig".efm.setup {
|
require("lspconfig").efm.setup {
|
||||||
-- init_options = {initializationOptions},
|
-- init_options = {initializationOptions},
|
||||||
cmd = {DATA_PATH .. "/lspinstall/efm/efm-langserver"},
|
cmd = { DATA_PATH .. "/lspinstall/efm/efm-langserver" },
|
||||||
init_options = {documentFormatting = true, codeAction = false},
|
init_options = { documentFormatting = true, codeAction = false },
|
||||||
filetypes = {"html", "css", "yaml", "vue", "javascript", "javascriptreact", "typescript", "typescriptreact"},
|
filetypes = { "html", "css", "yaml", "vue", "javascript", "javascriptreact", "typescript", "typescriptreact" },
|
||||||
settings = {
|
settings = {
|
||||||
rootMarkers = {".git/", "package.json"},
|
rootMarkers = { ".git/", "package.json" },
|
||||||
languages = {
|
languages = {
|
||||||
html = {prettier},
|
html = { prettier },
|
||||||
css = {prettier},
|
css = { prettier },
|
||||||
json = {prettier},
|
json = { prettier },
|
||||||
yaml = {prettier}
|
yaml = { prettier },
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ telescope.setup {
|
||||||
file_sorter = require("telescope.sorters").get_fzy_sorter,
|
file_sorter = require("telescope.sorters").get_fzy_sorter,
|
||||||
file_ignore_patterns = {},
|
file_ignore_patterns = {},
|
||||||
generic_sorter = require("telescope.sorters").get_generic_fuzzy_sorter,
|
generic_sorter = require("telescope.sorters").get_generic_fuzzy_sorter,
|
||||||
path_display = {"shorten"},
|
path_display = { "shorten" },
|
||||||
winblend = 0,
|
winblend = 0,
|
||||||
border = {},
|
border = {},
|
||||||
borderchars = { "─", "│", "─", "│", "╭", "╮", "╯", "╰" },
|
borderchars = { "─", "│", "─", "│", "╭", "╮", "╯", "╰" },
|
||||||
|
|
|
@ -21,7 +21,7 @@ which_key.setup {
|
||||||
z = true, -- bindings for folds, spelling and others prefixed with z
|
z = true, -- bindings for folds, spelling and others prefixed with z
|
||||||
g = true, -- bindings for prefixed with g
|
g = true, -- bindings for prefixed with g
|
||||||
},
|
},
|
||||||
spelling = {enabled = true, suggestions = 20}, -- use which-key for spelling hints
|
spelling = { enabled = true, suggestions = 20 }, -- use which-key for spelling hints
|
||||||
},
|
},
|
||||||
icons = {
|
icons = {
|
||||||
breadcrumb = "»", -- symbol used in the command line area that shows your active key combo
|
breadcrumb = "»", -- symbol used in the command line area that shows your active key combo
|
||||||
|
|
|
@ -21,7 +21,7 @@ opt.backup = false -- creates a backup file
|
||||||
opt.clipboard = O.clipboard -- allows neovim to access the system clipboard
|
opt.clipboard = O.clipboard -- allows neovim to access the system clipboard
|
||||||
opt.cmdheight = O.cmdheight -- more space in the neovim command line for displaying messages
|
opt.cmdheight = O.cmdheight -- more space in the neovim command line for displaying messages
|
||||||
opt.colorcolumn = "99999" -- fix indentline for now
|
opt.colorcolumn = "99999" -- fix indentline for now
|
||||||
opt.completeopt = {"menuone", "noselect"}
|
opt.completeopt = { "menuone", "noselect" }
|
||||||
opt.conceallevel = 0 -- so that `` is visible in markdown files
|
opt.conceallevel = 0 -- so that `` is visible in markdown files
|
||||||
opt.fileencoding = "utf-8" -- the encoding written to a file
|
opt.fileencoding = "utf-8" -- the encoding written to a file
|
||||||
opt.guifont = "monospace:h17" -- the font used in graphical neovim applications
|
opt.guifont = "monospace:h17" -- the font used in graphical neovim applications
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue