Compare commits

..

6 Commits

5 changed files with 19 additions and 13 deletions

View File

@ -61,8 +61,6 @@
]; ];
hardware = { hardware = {
pulseaudio.enable = true;
opengl.enable = true; opengl.enable = true;
sane = { sane = {
@ -73,6 +71,7 @@
security = { security = {
polkit.enable = true; polkit.enable = true;
rtkit.enable = true;
pam.services.swaylock = { }; pam.services.swaylock = { };
}; };
@ -88,6 +87,12 @@
wlr.enable = true; wlr.enable = true;
}; };
services.pipewire = {
enable = true;
wireplumber.enable = true;
pulse.enable = true;
};
services.openssh = { services.openssh = {
enable = true; enable = true;
settings.X11Forwarding = true; settings.X11Forwarding = true;

View File

@ -142,6 +142,10 @@
vim.g.gitblame_date_format = "%r" vim.g.gitblame_date_format = "%r"
-- setup illuminate highlight groups
vim.api.nvim_set_hl(0, "IlluminatedWordText", { bold = true })
vim.api.nvim_set_hl(0, "IlluminatedWordRead", { link = "IlluminatedWordText" })
vim.api.nvim_set_hl(0, "IlluminatedWordWrite", { link = "IlluminatedWordText" })
EOF EOF
''; '';
}; };

View File

@ -19,7 +19,6 @@ local on_attach = function(client, bufnr)
nnoremap("gD", vim.lsp.buf.declaration) nnoremap("gD", vim.lsp.buf.declaration)
nnoremap("gd", telescope.lsp_definitions) nnoremap("gd", telescope.lsp_definitions)
nnoremap("gt", telescope.lsp_type_definitions)
nnoremap("gi", telescope.lsp_implementations) nnoremap("gi", telescope.lsp_implementations)
nnoremap("gr", telescope.lsp_references) nnoremap("gr", telescope.lsp_references)
nnoremap("K", vim.lsp.buf.hover) nnoremap("K", vim.lsp.buf.hover)
@ -39,9 +38,6 @@ local on_attach = function(client, bufnr)
callback = format_buffer, callback = format_buffer,
}) })
end end
local illuminate = require("illuminate")
illuminate.on_attach(client)
end end
local lsp_status = require("lsp-status") local lsp_status = require("lsp-status")

View File

@ -1,14 +1,14 @@
require('nvim-treesitter.configs').setup({ require('nvim-treesitter.configs').setup({
highlight = { highlight = {
enable = true, enable = true,
additional_vim_regex_highlighting = false
}, },
indent = { incremental_selection = {
enable = false,
},
rainbow = {
enable = true, enable = true,
extended_mode = true, keymaps = {
max_file_lines = nil, init_selection = "v",
node_decremental = "<",
node_incremental = ">",
scope_incremental = false,
},
}, },
}) })

View File

@ -64,6 +64,7 @@ in
input = { input = {
"type:keyboard" = { "type:keyboard" = {
xkb_layout = "de"; xkb_layout = "de";
xkb_variant = "nodeadkeys";
}; };
"type:touchpad" = { "type:touchpad" = {
natural_scroll = "enabled"; natural_scroll = "enabled";