diff --git a/.config/dolphinrc b/.config/dolphinrc index e6494d3..67a950b 100644 --- a/.config/dolphinrc +++ b/.config/dolphinrc @@ -23,7 +23,6 @@ Places Icons Static Size=22 [MainWindow] MenuBar=Disabled -ToolBarsMovable=Disabled [PreviewSettings] Plugins=ffmpegthumbnailer,appimagethumbnail,com,audiothumbnail,avif,comicbookthumbnail,cursorthumbnail,djvuthumbnail,ebookthumbnail,exrthumbnail,directorythumbnail,heif,imagethumbnail,jpegthumbnail,jxl,kraorathumbnail,windowsexethumbnail,windowsimagethumbnail,mltpreview,opendocumentthumbnail,aseprite,svgthumbnail,gdk-pixbuf-thumbnailer,gsf-office diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua new file mode 100644 index 0000000..55b8979 --- /dev/null +++ b/.config/nvim/init.lua @@ -0,0 +1 @@ +require("config.lazy") diff --git a/.config/nvim/lazy-lock.json b/.config/nvim/lazy-lock.json new file mode 100644 index 0000000..20a73ad --- /dev/null +++ b/.config/nvim/lazy-lock.json @@ -0,0 +1,10 @@ +{ + "hererocks": { "branch": "master", "commit": "c9c5444dea1e07e005484014a8231aa667be30b6" }, + "image.nvim": { "branch": "master", "commit": "6ffafab2e98b5bda46bf227055aa84b90add8cdc" }, + "lazy.nvim": { "branch": "main", "commit": "7e6c863bc7563efbdd757a310d17ebc95166cef3" }, + "neo-tree.nvim": { "branch": "v3.x", "commit": "e96fd85bf18bc345dab332b345098fa5460dffac" }, + "nui.nvim": { "branch": "main", "commit": "53e907ffe5eedebdca1cd503b00aa8692068ca46" }, + "nvim-web-devicons": { "branch": "master", "commit": "1020869742ecb191f260818234517f4a1515cfe8" }, + "plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" }, + "tokyodark.nvim": { "branch": "master", "commit": "cc70a2fb809d5376f2bd8e5836f9bb3f5fb8ef43" } +} diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua new file mode 100644 index 0000000..f5ee74c --- /dev/null +++ b/.config/nvim/lua/config/lazy.lua @@ -0,0 +1,35 @@ +-- Bootstrap lazy.nvim +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not (vim.uv or vim.loop).fs_stat(lazypath) then + local lazyrepo = "https://github.com/folke/lazy.nvim.git" + local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath }) + if vim.v.shell_error ~= 0 then + vim.api.nvim_echo({ + { "Failed to clone lazy.nvim:\n", "ErrorMsg" }, + { out, "WarningMsg" }, + { "\nPress any key to exit..." }, + }, true, {}) + vim.fn.getchar() + os.exit(1) + end +end +vim.opt.rtp:prepend(lazypath) + +-- Make sure to setup `mapleader` and `maplocalleader` before +-- loading lazy.nvim so that mappings are correct. +-- This is also a good place to setup other settings (vim.opt) +vim.g.mapleader = " " +vim.g.maplocalleader = "\\" + +-- Setup lazy.nvim +require("lazy").setup({ + spec = { + -- import your plugins + { import = "plugins" }, + }, + -- Configure any other settings here. See the documentation for more details. + -- colorscheme that will be used when installing plugins. + install = { colorscheme = { "habamax" } }, + -- automatically check for plugin updates + checker = { enabled = true }, +}) diff --git a/.config/nvim/lua/plugins/nvim-neo-tree.lua b/.config/nvim/lua/plugins/nvim-neo-tree.lua new file mode 100644 index 0000000..8103f54 --- /dev/null +++ b/.config/nvim/lua/plugins/nvim-neo-tree.lua @@ -0,0 +1,10 @@ +return { + "nvim-neo-tree/neo-tree.nvim", + branch = "v3.x", + dependencies = { + "nvim-lua/plenary.nvim", + "nvim-tree/nvim-web-devicons", -- not strictly required, but recommended + "MunifTanjim/nui.nvim", + {"3rd/image.nvim", opts = {}}, -- Optional image support in preview window: See `# Preview Mode` for more information + } +} diff --git a/.config/nvim/lua/plugins/tokyodark.lua b/.config/nvim/lua/plugins/tokyodark.lua new file mode 100644 index 0000000..47d3aeb --- /dev/null +++ b/.config/nvim/lua/plugins/tokyodark.lua @@ -0,0 +1,9 @@ + +return { + "tiagovla/tokyodark.nvim", + lazy = false, + priority = 1000, + config = function() + vim.cmd("colorscheme tokyodark") + end, +} diff --git a/.config/okularrc b/.config/okularrc index 12e67b2..5269a1d 100644 --- a/.config/okularrc +++ b/.config/okularrc @@ -11,8 +11,10 @@ ToolBarsMovable=Disabled [Recent Files] File1[$e]=$HOME/Documents/Unity URP Intruduction.pdf File2[$e]=$HOME/Documents/The Unity Shaders Bible A linear shader explanation from beginner to advanced. Improve your game graphics with Unity and... (Fabrizio Espнndola, Pablo Yeber etc.) (Z-Library).pdf +File3[$e]=$HOME/Documents/AbiZeitung/Zeitung.pdf Name1[$e]=Unity URP Intruduction.pdf Name2[$e]=The Unity Shaders Bible A linear shader explanation from beginner to advanced. Improve your game graphics with Unity and... (Fabrizio Espнndola, Pablo Yeber etc.) (Z-Library).pdf +Name3[$e]=Zeitung.pdf [UiSettings] ColorScheme=KvAdaptaDark