dotfiles

custom linux config files managed with gnu stow

dotfiles

neovim/.config/nvim/lua/plugins/lsp/servers/phpls.lua


local util = require 'lspconfig.util'
return function(on_attach)
return {
		on_attach = function(client, bufnr)
			on_attach(client, bufnr)
		end,
		cmd = { "intelephense", "--stdio" },
		filetypes =  { "php" },
		root_dir = util.root_pattern("composer.json", ".git"),
		-- root_dir = util.find_git_ancestor,
		single_file_support = true,
	}
end

Download

raw zip tar