some stuff

This commit is contained in:
Barrett Ruth 2026-02-22 23:03:39 -05:00
parent 5b08815316
commit eedcb569a0
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
6 changed files with 11 additions and 19 deletions

View file

@ -1,6 +1,6 @@
return {
'saghen/blink.cmp',
version = '1.*',
build = 'nix run .#build-plugin',
dependencies = {
'Kaiser-Yang/blink-cmp-git',
'folke/lazydev.nvim',
@ -20,6 +20,7 @@ return {
require('blink.cmp').setup(opts)
end,
opts = {
fuzzy = { implementation = 'prefer_rust_with_warning' },
keymap = {
['<c-p>'] = { 'select_prev' },
['<c-n>'] = { 'show', 'select_next' },

View file

@ -228,10 +228,9 @@ return {
{
'malewicz1337/oil-git.nvim',
dir = '~/dev/oil-git.nvim',
ft = 'oil',
opts = {
symbol_position = 'signcolumn',
can_use_signcolumn = function() return 'yes' end,
can_use_signcolumn = function() return 'auto' end,
show_file_highlights = false,
show_directory_highlights = false,
symbols = {

View file

@ -44,10 +44,11 @@ return {
},
{
'barrettruth/nonicons.nvim',
dir = '~/dev/nonicons.nvim',
enabled = false,
lazy = false,
dependencies = {
{ 'nvim-tree/nvim-web-devicons', enabled = false, },
'nvim-tree/nvim-web-devicons',
},
},
{
@ -294,6 +295,9 @@ return {
skip_confirm_for_simple_edits = true,
prompt_save_on_select_new_entry = false,
float = { border = 'single' },
win_options = {
signcolumn = 'auto',
},
view_options = {
is_hidden_file = function(name, bufnr)
local dir = require("oil").get_current_dir(bufnr)