Compare commits

..

No commits in common. "dbde641e35173027197b0ac8388de237bb73c807" and "9abd5dde3f232ece53cf1403d338652185b96fe9" have entirely different histories.

4 changed files with 2 additions and 11 deletions

View file

@ -164,7 +164,6 @@ vim.lsp.enable({
"biome", "biome",
"fish_lsp", "fish_lsp",
"gleam", "gleam",
"gopls",
"hyprls", "hyprls",
"intelephense", "intelephense",
"jsonls", "jsonls",

View file

@ -62,14 +62,6 @@ return {
config = function(_, opts) config = function(_, opts)
require("conform").setup(opts) require("conform").setup(opts)
vim.api.nvim_create_autocmd("FileType", {
pattern = { "php" },
callback = function(bufnr)
vim.b[bufnr].disable_autoformat
end,
})
end,
local function toggleAutoFormat() local function toggleAutoFormat()
-- to make this global, change b to g -- to make this global, change b to g
if vim.b.disable_autoformat == nil then if vim.b.disable_autoformat == nil then

View file

@ -21,7 +21,7 @@ return {
init = function() init = function()
-- HACK: for filetypes that doesn't start treesitter hightlight on it's own -- HACK: for filetypes that doesn't start treesitter hightlight on it's own
vim.api.nvim_create_autocmd("FileType", { vim.api.nvim_create_autocmd("FileType", {
pattern = { "gleam", "go" }, pattern = { "gleam" },
callback = function() callback = function()
vim.treesitter.start() vim.treesitter.start()
end, end,

View file

@ -5,7 +5,7 @@ export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
export QT_QPA_PLATFORMTHEME=qt5ct export QT_QPA_PLATFORMTHEME=qt5ct
export MOZ_ENABLE_WAYLAND=1 export MOZ_ENABLE_WAYLAND=1
export XCURSOR_SIZE=24 export XCURSOR_SIZE=24
export GTK_THEME=catppuccin-macchiato-teal-standard-default export GTK_THEME=catppuccin-macchiato-teal-standard+default
export SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/rbw/ssh-agent-socket export SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/rbw/ssh-agent-socket
export EDITOR=nvim export EDITOR=nvim