some variety on macbook
This commit is contained in:
parent
1bbc50e3a9
commit
63e44654f1
19 changed files with 229 additions and 99 deletions
|
|
@ -19,13 +19,9 @@ return {
|
|||
signs = true,
|
||||
underline = true,
|
||||
virtual_text = false,
|
||||
severity_sort = true,
|
||||
}
|
||||
|
||||
vim.fn.sign_define('DiagnosticSignError', { text = '', texthl = 'DiagnosticSignError' })
|
||||
vim.fn.sign_define('DiagnosticSignWarn', { text = '', texthl = 'DiagnosticSignWarn' })
|
||||
vim.fn.sign_define('DiagnosticSignInfo', { text = '', texthl = 'DiagnosticSignInfo' })
|
||||
vim.fn.sign_define('DiagnosticSignHint', { text = '', texthl = 'DiagnosticSignHint' })
|
||||
|
||||
-- function will be executed to configure the current buffer
|
||||
vim.api.nvim_create_autocmd('LspAttach', {
|
||||
group = vim.api.nvim_create_augroup('kickstart-lsp-attach', { clear = true }),
|
||||
|
|
@ -57,16 +53,24 @@ return {
|
|||
|
||||
local lazyPlugins = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
||||
local servers = {
|
||||
biome = {},
|
||||
biome = {
|
||||
settings = {
|
||||
biome = {
|
||||
single_file_support = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
tsserver = {},
|
||||
lua_ls = {
|
||||
settings = {
|
||||
Lua = {
|
||||
runtime = {
|
||||
version = 'LuaJIT',
|
||||
pathStrict = true,
|
||||
path = { '?.lua', '?/init.lua' },
|
||||
},
|
||||
workspace = {
|
||||
checkthirdparty = { lazyPlugins },
|
||||
checkThirdParty = false,
|
||||
library = vim.tbl_extend('force', vim.api.nvim_get_runtime_file('', true), { vim.env.VIMRUNTIME }),
|
||||
},
|
||||
completion = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue