2 Commits
2.7.0 ... 2.8.0

Author SHA1 Message Date
c1a523c7bd neovide 2026-02-15 16:35:44 +05:00
824b68c48f blink deleted 2026-02-01 16:47:27 +05:00
6 changed files with 8 additions and 5 deletions

View File

@@ -3,6 +3,7 @@ require('settings/system')
require('settings/tabs')
require('settings/panels')
require('settings/search')
require('settings/neovide')
-- Plugins
require("settings/lazy")

View File

@@ -3,7 +3,6 @@
"bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" },
"cmp-git": { "branch": "main", "commit": "b24309c386c9666c549a1abaedd4956541676d06" },
"cmp-nvim-lsp": { "branch": "main", "commit": "cbc7b02bb99fae35cb42f514762b89b5126651ef" },
"diaglist.nvim": { "branch": "master", "commit": "8aba9fcf62cc60e1d5ce941faedecc399d9a1e8b" },
"fidget.nvim": { "branch": "main", "commit": "7fa433a83118a70fe24c1ce88d5f0bd3453c0970" },
"flexoki": { "branch": "main", "commit": "079554c242a86be5d1a95598c7c6368d6eedd7a3" },
"friendly-snippets": { "branch": "main", "commit": "6cd7280adead7f586db6fccbd15d2cac7e2188b9" },

View File

@@ -1,8 +1,8 @@
-- Performant, batteries-included completion plugin for Neovim
return {
'saghen/blink.cmp',
enabled = true,
lazy = false,
enabled = false,
lazy = true,
-- optional: provides snippets for the snippet source
dependencies = { 'rafamadriz/friendly-snippets' },

View File

@@ -1,7 +1,7 @@
-- Quickstart configs for Nvim LSP
return {
'neovim/nvim-lspconfig',
enabled = true,
enabled = false,
lazy = false,
priority = 70,
dependencies = {

View File

@@ -9,7 +9,7 @@ return {
-- Load luvit types when the `vim.uv` word is found
{ path = '${3rd}/luv/library', words = { 'vim%.uv' } },
library = { "nvim-dap-ui" }
{ 'nvim-dap-ui' }
},
}
}

3
lua/settings/neovide.lua Normal file
View File

@@ -0,0 +1,3 @@
if vim.g.neovide then
vim.g.neovide_scale_factor = 0.73
end