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