This commit is contained in:
Belal Elsabbagh
2025-02-12 12:13:08 +02:00
parent dcfdf27c64
commit dc3f2ada8f
4 changed files with 426 additions and 9 deletions

View File

@@ -22,6 +22,8 @@ vim.opt.inccommand = 'split'
vim.opt.cursorline = true
vim.opt.scrolloff = 10
vim.opt.textwidth = 80
vim.opt.tabstop = 4
vim.opt.expandtab = true
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' })

View File

@@ -32,15 +32,6 @@ return {
php = { 'pint', 'intelephense', stop_after_first = true },
},
formatters = {
biome = {
meta = {
url = 'https://github.com/biomejs/biome',
description = 'A toolchain for web projects, aimed to provide functionalities to maintain them.',
},
command = 'biome',
stdin = true,
args = { 'format', '--stdin-file-path', '$FILENAME' },
},
intelephense = {
command = 'intelephense',
args = {},