Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c1a523c7bd | |||
| 824b68c48f |
1
init.lua
1
init.lua
@@ -3,6 +3,7 @@ require('settings/system')
|
|||||||
require('settings/tabs')
|
require('settings/tabs')
|
||||||
require('settings/panels')
|
require('settings/panels')
|
||||||
require('settings/search')
|
require('settings/search')
|
||||||
|
require('settings/neovide')
|
||||||
|
|
||||||
-- Plugins
|
-- Plugins
|
||||||
require("settings/lazy")
|
require("settings/lazy")
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
"bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" },
|
"bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" },
|
||||||
"cmp-git": { "branch": "main", "commit": "b24309c386c9666c549a1abaedd4956541676d06" },
|
"cmp-git": { "branch": "main", "commit": "b24309c386c9666c549a1abaedd4956541676d06" },
|
||||||
"cmp-nvim-lsp": { "branch": "main", "commit": "cbc7b02bb99fae35cb42f514762b89b5126651ef" },
|
"cmp-nvim-lsp": { "branch": "main", "commit": "cbc7b02bb99fae35cb42f514762b89b5126651ef" },
|
||||||
"diaglist.nvim": { "branch": "master", "commit": "8aba9fcf62cc60e1d5ce941faedecc399d9a1e8b" },
|
|
||||||
"fidget.nvim": { "branch": "main", "commit": "7fa433a83118a70fe24c1ce88d5f0bd3453c0970" },
|
"fidget.nvim": { "branch": "main", "commit": "7fa433a83118a70fe24c1ce88d5f0bd3453c0970" },
|
||||||
"flexoki": { "branch": "main", "commit": "079554c242a86be5d1a95598c7c6368d6eedd7a3" },
|
"flexoki": { "branch": "main", "commit": "079554c242a86be5d1a95598c7c6368d6eedd7a3" },
|
||||||
"friendly-snippets": { "branch": "main", "commit": "6cd7280adead7f586db6fccbd15d2cac7e2188b9" },
|
"friendly-snippets": { "branch": "main", "commit": "6cd7280adead7f586db6fccbd15d2cac7e2188b9" },
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
-- Performant, batteries-included completion plugin for Neovim
|
-- Performant, batteries-included completion plugin for Neovim
|
||||||
return {
|
return {
|
||||||
'saghen/blink.cmp',
|
'saghen/blink.cmp',
|
||||||
enabled = true,
|
enabled = false,
|
||||||
lazy = false,
|
lazy = true,
|
||||||
-- optional: provides snippets for the snippet source
|
-- optional: provides snippets for the snippet source
|
||||||
dependencies = { 'rafamadriz/friendly-snippets' },
|
dependencies = { 'rafamadriz/friendly-snippets' },
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
-- Quickstart configs for Nvim LSP
|
-- Quickstart configs for Nvim LSP
|
||||||
return {
|
return {
|
||||||
'neovim/nvim-lspconfig',
|
'neovim/nvim-lspconfig',
|
||||||
enabled = true,
|
enabled = false,
|
||||||
lazy = false,
|
lazy = false,
|
||||||
priority = 70,
|
priority = 70,
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ return {
|
|||||||
-- Load luvit types when the `vim.uv` word is found
|
-- Load luvit types when the `vim.uv` word is found
|
||||||
{ path = '${3rd}/luv/library', words = { 'vim%.uv' } },
|
{ path = '${3rd}/luv/library', words = { 'vim%.uv' } },
|
||||||
|
|
||||||
library = { "nvim-dap-ui" }
|
{ 'nvim-dap-ui' }
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
3
lua/settings/neovide.lua
Normal file
3
lua/settings/neovide.lua
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
if vim.g.neovide then
|
||||||
|
vim.g.neovide_scale_factor = 0.73
|
||||||
|
end
|
||||||
Reference in New Issue
Block a user