updateHyprland
This commit is contained in:
parent
4b0fa2ba87
commit
5ca1f8f15a
4 changed files with 13 additions and 12 deletions
|
@ -36,6 +36,7 @@
|
|||
input = {
|
||||
kb_layout = "us";
|
||||
follow_mouse = "1";
|
||||
mouse_refocus = false;
|
||||
touchpad = {
|
||||
natural_scroll = true;
|
||||
disable_while_typing = true;
|
||||
|
|
|
@ -11,8 +11,6 @@
|
|||
}
|
||||
)
|
||||
|
||||
vim.diagnostic.config { float = { border = _border } }
|
||||
|
||||
require('lspconfig.ui.windows').default_options = { border = _border }
|
||||
local signs = { Error = " ", Warn = " ", Hint = " ", Info = " " }
|
||||
for type, icon in pairs(signs) do
|
||||
|
@ -29,11 +27,12 @@
|
|||
|
||||
vim.diagnostic.config ( { virtual_text = { prefix = '●', } } )
|
||||
vim.diagnostic.config { float = { border = _border } }
|
||||
vim.diagnostic.config({ virtual_text = false })
|
||||
'';
|
||||
|
||||
plugins = {
|
||||
lsp-lines.enable = true;
|
||||
lsp-lines.currentLine = false;
|
||||
lsp-lines.currentLine = true;
|
||||
crates-nvim.enable = true;
|
||||
lspsaga = {
|
||||
enable = false;
|
||||
|
@ -82,6 +81,7 @@
|
|||
}
|
||||
)
|
||||
'';
|
||||
|
||||
keymaps = {
|
||||
silent = true;
|
||||
diagnostic = {
|
||||
|
|
|
@ -51,8 +51,8 @@
|
|||
popupmenu.enabled = false;
|
||||
lsp.hover.enabled = false;
|
||||
presets = {
|
||||
bottom_search = false;
|
||||
command_palette = false;
|
||||
bottom_search = true;
|
||||
command_palette = true;
|
||||
long_message_to_split = false;
|
||||
inc_rename = false;
|
||||
lsp_doc_border = true;
|
||||
|
|
|
@ -35,9 +35,9 @@
|
|||
};
|
||||
};
|
||||
sources = [
|
||||
# { name = "nvim_lua"; }
|
||||
{ name = "nvim_lua"; }
|
||||
{ name = "nvim_lsp"; }
|
||||
# { name = "nvim_lsp_signature_help"; }
|
||||
{ name = "nvim_lsp_signature_help"; }
|
||||
{ name = "calc"; }
|
||||
{ name = "path"; }
|
||||
{ name = "buffer"; }
|
||||
|
|
Loading…
Reference in a new issue