1
Fork 0
This commit is contained in:
Matei Adriel 2022-12-05 01:18:31 +01:00
parent 32b53a7fd6
commit 811660e30a
11 changed files with 49 additions and 8 deletions
dotfiles/neovim/lua/my

View file

@ -2,12 +2,10 @@ local function makeEnv(cond)
return {
active = cond,
unless = function(f)
if not cond() then f()
end
if not cond() then f() end
end,
when = function(f)
if cond() then f()
end
if cond() then f() end
end
}
end
@ -16,6 +14,9 @@ return {
vscode = makeEnv(function()
return vim.g.vscode ~= nil
end),
neovide = makeEnv(function()
return vim.g.neovide ~= nil
end),
firevim = makeEnv(function()
return vim.g.started_by_firenvim ~= nil
end)

View file

@ -39,7 +39,7 @@ function M.setup()
"wakatime/vim-wakatime", -- track time usage
"vmchale/dhall-vim", -- dhall syntax highlighting
-- "folke/which-key.nvim", -- shows what other keys I can press to finish a command
"psliwka/vim-smoothie", -- smooth scrolling
{ "psliwka/vim-smoothie", opt = true }, -- smooth scrolling
"easymotion/vim-easymotion", -- removes the need for spamming w or e
"tpope/vim-surround", -- work with brackets, quotes, tags, etc
"MunifTanjim/nui.nvim", -- ui stuff required by idris2

View file

@ -35,6 +35,13 @@ function M.setup()
-- require("my.plugins.notify").setup()
end)
if env.neovide.active() then
require("my.plugins.neovide").setup()
else
-- Neovide already provides this functionality!
vim.cmd [[packadd! vim-smoothie]]
end
if env.firevim.active() then
require("my.plugins.firevim").setup()
else

View file

@ -105,6 +105,10 @@ local servers = {
M.capabilities = require('cmp_nvim_lsp').default_capabilities()
function M.setup()
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover,
{ border = "single" })
vim.lsp.handlers["textDocument/signatureHelp"] =
vim.lsp.with(vim.lsp.handlers.signature_help, { border = "single" })
-- Setup basic language servers
for lsp, details in pairs(servers) do

View file

@ -0,0 +1,9 @@
local M = {}
function M.setup()
vim.g.neovide_floating_blur_amount_x = 2.0
vim.g.neovide_floating_blur_amount_y = 2.0
-- vim.g.neovide_transparency = 0.8
end
return M