Skip to content

Commit

Permalink
Merge pull request #5 from binarious/patch-2
Browse files Browse the repository at this point in the history
fix(init.lua): paths and json include
  • Loading branch information
praem90 authored Mar 3, 2024
2 parents 5b817ea + 03b83cd commit e3bea05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/phpcs/init.lua
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
local M = {};
local json = require "json"
local json = require('phpcs.json')

local loop = vim.loop
local root = vim.loop.cwd()
local phpcs_path = "/home/praem90/.config/composer/vendor/bin/phpcs"
local phpcbf_path = "/home/praem90/.config/composer/vendor/bin/phpcbf"
local phpcs_path = "$HOME/.config/composer/vendor/bin/phpcs"
local phpcbf_path = "$HOME/.config/composer/vendor/bin/phpcbf"
local phpcs_standard = "PSR2"

local Job = require'plenary.job'
Expand Down

0 comments on commit e3bea05

Please sign in to comment.