some stuff
This commit is contained in:
parent
5b08815316
commit
eedcb569a0
6 changed files with 11 additions and 19 deletions
|
|
@ -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' },
|
||||
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue