floating window border
This commit is contained in:
@@ -20,6 +20,7 @@
|
|||||||
"mason.nvim": { "branch": "main", "commit": "49ff59aded1047a773670651cfa40e76e63c6377" },
|
"mason.nvim": { "branch": "main", "commit": "49ff59aded1047a773670651cfa40e76e63c6377" },
|
||||||
"mini.nvim": { "branch": "main", "commit": "eb2dd6d187e1ab5fefec66f0d37b1a3dc8633d17" },
|
"mini.nvim": { "branch": "main", "commit": "eb2dd6d187e1ab5fefec66f0d37b1a3dc8633d17" },
|
||||||
"neodev.nvim": { "branch": "main", "commit": "ce9a2e8eaba5649b553529c5498acb43a6c317cd" },
|
"neodev.nvim": { "branch": "main", "commit": "ce9a2e8eaba5649b553529c5498acb43a6c317cd" },
|
||||||
|
"noice.nvim": { "branch": "main", "commit": "cade1f972ba226e7753a7a113f3f1a942908e73c" },
|
||||||
"nvim-cmp": { "branch": "main", "commit": "5260e5e8ecadaf13e6b82cf867a909f54e15fd07" },
|
"nvim-cmp": { "branch": "main", "commit": "5260e5e8ecadaf13e6b82cf867a909f54e15fd07" },
|
||||||
"nvim-dap": { "branch": "master", "commit": "5a2f7121869394502521c52b2bc581ab22c69447" },
|
"nvim-dap": { "branch": "master", "commit": "5a2f7121869394502521c52b2bc581ab22c69447" },
|
||||||
"nvim-dap-go": { "branch": "main", "commit": "5faf165f5062187320eaf9d177c3c1f647adc22e" },
|
"nvim-dap-go": { "branch": "main", "commit": "5faf165f5062187320eaf9d177c3c1f647adc22e" },
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ return {
|
|||||||
"catppuccin/nvim",
|
"catppuccin/nvim",
|
||||||
name = "catpuccin",
|
name = "catpuccin",
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
|
lazy = false,
|
||||||
init = function()
|
init = function()
|
||||||
require("catppuccin").setup {
|
require("catppuccin").setup {
|
||||||
transparent_background = true,
|
transparent_background = true,
|
||||||
@@ -11,5 +12,17 @@ return {
|
|||||||
vim.cmd.hi "Comment gui=none"
|
vim.cmd.hi "Comment gui=none"
|
||||||
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||||
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||||
|
|
||||||
|
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, {
|
||||||
|
border = "rounded",
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.signature_help, {
|
||||||
|
border = "rounded",
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.diagnostic.config {
|
||||||
|
float = { border = "rounded" },
|
||||||
|
}
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,14 +28,14 @@ return {
|
|||||||
html = {
|
html = {
|
||||||
filetypes = { "html", "tmpl" },
|
filetypes = { "html", "tmpl" },
|
||||||
},
|
},
|
||||||
jsonls = {
|
-- jsonls = {
|
||||||
settings = {
|
-- settings = {
|
||||||
json = {
|
-- json = {
|
||||||
schemas = require("schemastore").json.schemas(),
|
-- schemas = require("schemastore").json.schemas(),
|
||||||
validate = { enable = true },
|
-- validate = { enable = true },
|
||||||
},
|
-- },
|
||||||
},
|
-- },
|
||||||
},
|
-- },
|
||||||
lua_ls = {
|
lua_ls = {
|
||||||
-- cmd = {...},
|
-- cmd = {...},
|
||||||
-- filetypes = { ...},
|
-- filetypes = { ...},
|
||||||
@@ -50,7 +50,7 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
pyright = {},
|
-- pyright = {},
|
||||||
tsserver = {},
|
tsserver = {},
|
||||||
tailwindcss = {
|
tailwindcss = {
|
||||||
filetypes = { "html", "css", "typescript", "typescriptreact" },
|
filetypes = { "html", "css", "typescript", "typescriptreact" },
|
||||||
@@ -64,9 +64,9 @@ return {
|
|||||||
"clang-format",
|
"clang-format",
|
||||||
"gofumpt",
|
"gofumpt",
|
||||||
"goimports-reviser",
|
"goimports-reviser",
|
||||||
"mypy",
|
-- "mypy",
|
||||||
"prettier",
|
"prettier",
|
||||||
"ruff",
|
-- "ruff",
|
||||||
"stylua",
|
"stylua",
|
||||||
})
|
})
|
||||||
require("mason-tool-installer").setup { ensure_installed = ensure_installed }
|
require("mason-tool-installer").setup { ensure_installed = ensure_installed }
|
||||||
|
|||||||
7
nvim/lua/lilJ/plugins/noice.lua
Normal file
7
nvim/lua/lilJ/plugins/noice.lua
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
return {
|
||||||
|
-- "folke/noice.nvim",
|
||||||
|
-- event = "VeryLazy",
|
||||||
|
-- dependencies = {
|
||||||
|
-- "MunifTanjim/nui.nvim",
|
||||||
|
-- },
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user