Skip to content

Commit

Permalink
a few small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
willruggiano committed Apr 29, 2024
1 parent b4d2584 commit 1c95a48
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 20 deletions.
1 change: 1 addition & 0 deletions plugins/bombadil/plugin/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ vim.opt.softtabstop = -1 -- use shiftwidth
vim.opt.tabstop = 2

vim.opt.termguicolors = true
vim.opt.textwidth = 80
vim.opt.timeoutlen = 500
vim.opt.updatetime = 1000
vim.opt.wildmode = { "longest", "full" }
Expand Down
2 changes: 1 addition & 1 deletion plugins/cmp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ return function()
{ name = "nvim_lsp" },
{ name = "nvim_lsp_signature_help" },
{ name = "snippy" },
{ name = "cody" },
-- { name = "cody" },
}, {
{ name = "path" },
{ name = "buffer" },
Expand Down
2 changes: 1 addition & 1 deletion plugins/conform.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ return function()
command = "biome", -- not necessarily from node_modules/.bin
},
sqlfluff = {
args = { "fix", "--disable-progress-bar", "--force", "-" },
args = { "fix", "--disable-progress-bar", "-" },
},
stylua = {
require_cwd = true, -- only when it finds the root marker
Expand Down
5 changes: 0 additions & 5 deletions plugins/dbee.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,6 @@ return function()
opts = { noremap = true, nowait = true, expr = true },
},
},
window_options = {
number = false,
relativenumber = false,
signcolumn = "no",
},
},
extra_helpers = {
postgres = {
Expand Down
26 changes: 13 additions & 13 deletions plugins/spec.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ in rec {
src = sources.nvim-cmp;
config = ./cmp.lua;
dependencies = {
inherit sg;
# inherit sg;
cmp-buffer = {
src = sources.cmp-buffer;
};
Expand Down Expand Up @@ -289,7 +289,7 @@ in rec {
src = sources.nvim-lspconfig;
config = ./lsp.lua;
dependencies = {
inherit conform fun lsp-file-operations lspkind sg;
inherit conform fun lsp-file-operations lspkind;
clangd_extensions = {
src = sources."clangd_extensions.nvim";
};
Expand Down Expand Up @@ -477,17 +477,17 @@ in rec {
};
};

sg = let
package = inputs'.sg-nvim.packages.sg-nvim;
in {
inherit package;
config = {
accept_tos = true;
download_binaries = false;
};
cpath = "${package}/lib/?.so";
paths = [inputs'.sg-nvim.packages.default];
};
# sg = let
# package = inputs'.sg-nvim.packages.sg-nvim;
# in {
# inherit package;
# config = {
# accept_tos = true;
# download_binaries = false;
# };
# cpath = "${package}/lib/?.so";
# paths = [inputs'.sg-nvim.packages.default];
# };

statuscol = {
src = sources."statuscol.nvim";
Expand Down

0 comments on commit 1c95a48

Please sign in to comment.