Compare commits

..

No commits in common. "3ae2dac658531b8ea5cc26d81660b9cc76ea48f3" and "c5903dd53319b42e2e6ec152a988a1b9149a9c19" have entirely different histories.

3 changed files with 3 additions and 8 deletions

View file

@ -19,7 +19,7 @@ vim.g.maplocalleader = ' '
-- For a full summary of this table, run ":lua vim.inspect(vim.g.os_uname)"
-- Shows up as undefined but executes and behaves flawlessly as of 2024-08-18
---@diagnostic disable-next-line: undefined-field
vim.g.os_uname = vim.uv.os_uname()
vim.g.os_uname = vim.loop.os_uname()
vim.g.sysname = vim.g.os_uname.sysname -- "Linux, FreeBSD, ..."
vim.g.arch = vim.g.os_uname.machine -- "x86_64, ..."

View file

@ -31,12 +31,7 @@ return { -- Autoformat
--
-- You can use a sub-list to tell conform to run *until* a formatter
-- is found.
nu = { 'nufmt' },
bash = { 'shfmt' },
zsh = { 'shfmt' },
rust = { "rustfmt", lsp_format = "fallback" },
javascript = { { 'prettierd', 'prettier' } },
html = { { 'prettierd', 'prettier' } },
java = { 'clang-format' },
},
},

View file

@ -9,12 +9,12 @@ return { -- Fuzzy Finder (files, lsp, etc)
-- `build` is used to run some command when the plugin is installed/updated.
-- This is only run then, not every time Neovim starts up.
build = 'gmake',
build = 'make',
-- `cond` is a condition used to determine whether this plugin should be
-- installed and loaded.
cond = function()
return vim.fn.executable 'gmake' == 1
return vim.fn.executable 'make' == 1
end,
},
{ 'nvim-telescope/telescope-ui-select.nvim' },