parent
87a60c4a1d
commit
9a4e68d900
|
@ -80,7 +80,7 @@ bindsym $mod+Shift+0 move container to workspace $ws0; workspace $ws0
|
|||
|
||||
# Open specific applications in floating mode
|
||||
for_window [class="(?i)virtualbox"] floating enable border normal
|
||||
for_window [title="KeePassX$"] floating enable
|
||||
for_window [title="KeePassX$"] floating enable
|
||||
for_window [title="factorio.exe"] floating enable
|
||||
|
||||
###############################################################################
|
||||
|
@ -95,7 +95,7 @@ exec --no-startup-id dunst
|
|||
exec --no-startup-id ~/.scripts/startup.sh
|
||||
exec --no-startup-id polybar
|
||||
exec --no-startup-id syncthing serve --no-browser
|
||||
exec --no-startup-id feh --randomize --bg-fill $HOME/Pictures/Wallpaper/basic/*
|
||||
exec --no-startup-id feh --bg-fill $HOME/Pictures/Wallpaper/basic/GMzBUSpbMAAuccT.jpg
|
||||
|
||||
###############################################################################
|
||||
################################# Keybindings #################################
|
||||
|
@ -161,7 +161,7 @@ bindsym $mod+j focus down
|
|||
bindsym $mod+k focus up
|
||||
bindsym $mod+l focus right
|
||||
|
||||
# move focused workspace
|
||||
# move focused workspace
|
||||
bindsym $mod+Mod1+h move workspace to output left
|
||||
bindsym $mod+Mod1+j move workspace to output down
|
||||
bindsym $mod+Mod1+k move workspace to output up
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
':/home/tudattr/Pictures/Screenshots/2016-12
|
||||
':/home/tudattr/.genesis/Documents/Uni/Studium/2023_Sommersemester/ethfuzz-related-work/2024-10-30
|
||||
a:/home/tudattr/Documents/Arbeit/Uni-DuE_NCS_SHK/04_-_Projekte
|
||||
s:/home/tudattr/Pictures/Screenshots
|
||||
u:/home/tudattr/.genesis/Documents/Uni/Studium
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"LanguageTool.nvim": { "branch": "master", "commit": "809e7d77fec834597f495fec737c59292a10025b" },
|
||||
"LazyVim": { "branch": "main", "commit": "7c7c196a78e936a1bc4cf28e7908e9bd96d75607" },
|
||||
"SchemaStore.nvim": { "branch": "main", "commit": "ed65feb5b8026d7c6b1981cfe9d97402342d344d" },
|
||||
"bufferline.nvim": { "branch": "main", "commit": "5cc447cb2b463cb499c82eaeabbed4f5fa6a0a44" },
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
-- Autocmds are automatically loaded on the VeryLazy event
|
||||
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
|
||||
-- Add any additional autocmds here
|
||||
|
||||
vim.api.nvim_create_autocmd({ "Filetype" }, {
|
||||
pattern = { "tex" },
|
||||
callback = function()
|
||||
vim.cmd("LanguageToolSetUp")
|
||||
end,
|
||||
})
|
||||
|
|
|
@ -6,3 +6,5 @@ local opt = vim.opt
|
|||
|
||||
opt.spelllang = { "en_us", "de_de" }
|
||||
vim.api.nvim_set_option_value("colorcolumn", "79", {})
|
||||
|
||||
vim.g.languagetool_server_command = "/usr/bin/languagetool --http"
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
return {
|
||||
-- Add vim-ledger
|
||||
{ "vigoux/LanguageTool.nvim" },
|
||||
}
|
Loading…
Reference in New Issue