diff --git a/nvim/.config/nvim/init.lua b/nvim/.config/nvim/init.lua deleted file mode 100644 index a2b3d36..0000000 --- a/nvim/.config/nvim/init.lua +++ /dev/null @@ -1,11 +0,0 @@ -vim.o.number = true -vim.o.relativenumber = true -vim.o.cursorline = true -vim.o.wrap = false -vim.o.tabstop = 2 -vim.o.softtabstop = 2 -vim.o.shiftwidth = 2 -vim.g.mapleader = " " - --- Plugins bootstrap -require("config.lazy") diff --git a/nvim/.config/nvim/lazy-lock.json b/nvim/.config/nvim/lazy-lock.json deleted file mode 100644 index 52b176f..0000000 --- a/nvim/.config/nvim/lazy-lock.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "colorviewer.nvim": { "branch": "main", "commit": "7e3fcff372c68526d85028053199721b635d83a1" }, - "lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" }, - "lualine.nvim": { "branch": "master", "commit": "47f91c416daef12db467145e16bed5bbfe00add8" }, - "noice.nvim": { "branch": "main", "commit": "7bfd942445fb63089b59f97ca487d605e715f155" }, - "nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" }, - "nvim-notify": { "branch": "master", "commit": "8701bece920b38ea289b457f902e2ad184131a5d" }, - "nvim-web-devicons": { "branch": "master", "commit": "737cf6c657898d0c697311d79d361288a1343d50" }, - "tokyonight.nvim": { "branch": "main", "commit": "5da1b76e64daf4c5d410f06bcb6b9cb640da7dfd" }, - "which-key.nvim": { "branch": "main", "commit": "3aab2147e74890957785941f0c1ad87d0a44c15a" } -} diff --git a/nvim/.config/nvim/lua/config/lazy.lua b/nvim/.config/nvim/lua/config/lazy.lua deleted file mode 100644 index 404f1fe..0000000 --- a/nvim/.config/nvim/lua/config/lazy.lua +++ /dev/null @@ -1,30 +0,0 @@ --- 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) - --- Setup lazy.nvim - -require("lazy").setup({ - spec = { - -- import plugins - { import = "plugins" }, - }, - -- Configure any other settings. - -- colorscheme that will be used when installing plugins. - install = { colorscheme = { "tokyonight" } }, - -- automatically check for plugin updates - checker = { enabled = true, notify = true }, -}) diff --git a/nvim/.config/nvim/lua/plugins/color-viewer.lua b/nvim/.config/nvim/lua/plugins/color-viewer.lua deleted file mode 100644 index a0661ed..0000000 --- a/nvim/.config/nvim/lua/plugins/color-viewer.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - 'Godswill-255/colorviewer.nvim', - config = function() - require('colorviewer').setup({ - symbol = "■", - }) - end -} diff --git a/nvim/.config/nvim/lua/plugins/line.lua b/nvim/.config/nvim/lua/plugins/line.lua deleted file mode 100644 index b9b4d36..0000000 --- a/nvim/.config/nvim/lua/plugins/line.lua +++ /dev/null @@ -1,62 +0,0 @@ -return { - { - 'nvim-lualine/lualine.nvim', - dependencies = { 'nvim-tree/nvim-web-devicons' }, - opts = function() - return { - options = { - icons_enabled = true, - theme = 'auto', - component_separators = { left = '', right = ''}, - section_separators = { left = '', right = ''}, - disabled_filetypes = { - statusline = {}, - winbar = {}, - }, - ignore_focus = {}, - always_divide_middle = true, - always_show_tabline = true, - globalstatus = false, - refresh = { - statusline = 1000, - tabline = 1000, - winbar = 1000, - refresh_time = 16, -- ~60fps - events = { - 'WinEnter', - 'BufEnter', - 'BufWritePost', - 'SessionLoadPost', - 'FileChangedShellPost', - 'VimResized', - 'Filetype', - 'CursorMoved', - 'CursorMovedI', - 'ModeChanged', - }, - }, - }, - sections = { - lualine_a = {'mode'}, - lualine_b = {'branch', 'diff', 'diagnostics'}, - lualine_c = {'filename'}, - lualine_x = {'encoding', 'fileformat', 'filetype'}, - lualine_y = {'progress'}, - lualine_z = {'location'} - }, - inactive_sections = { - lualine_a = {}, - lualine_b = {}, - lualine_c = {'filename'}, - lualine_x = {'location'}, - lualine_y = {}, - lualine_z = {} - }, - tabline = {}, - winbar = {}, - inactive_winbar = {}, - extensions = {} - } - end - } -} diff --git a/nvim/.config/nvim/lua/plugins/noice.lua b/nvim/.config/nvim/lua/plugins/noice.lua deleted file mode 100644 index 3f76046..0000000 --- a/nvim/.config/nvim/lua/plugins/noice.lua +++ /dev/null @@ -1,15 +0,0 @@ -return { - "folke/noice.nvim", - event = "VeryLazy", - opts = { - -- add any options here - }, - dependencies = { - -- if you lazy-load any plugin below, make sure to add proper `module="..."` entries - "MunifTanjim/nui.nvim", - -- OPTIONAL: - -- `nvim-notify` is only needed, if you want to use the notification view. - -- If not available, we use `mini` as the fallback - "rcarriga/nvim-notify", - } -} diff --git a/nvim/.config/nvim/lua/plugins/theme.lua b/nvim/.config/nvim/lua/plugins/theme.lua deleted file mode 100644 index 1d8545a..0000000 --- a/nvim/.config/nvim/lua/plugins/theme.lua +++ /dev/null @@ -1,14 +0,0 @@ -return { - { - "folke/tokyonight.nvim", - lazy = false, - priority = 1000, - opts = {}, - config = function() - if os.getenv("TERM") ~= "linux" then - vim.cmd.colorscheme("tokyonight-storm") - end - end - } -} - diff --git a/nvim/.config/nvim/lua/plugins/which-key.lua b/nvim/.config/nvim/lua/plugins/which-key.lua deleted file mode 100644 index 205da0a..0000000 --- a/nvim/.config/nvim/lua/plugins/which-key.lua +++ /dev/null @@ -1,18 +0,0 @@ -return { - "folke/which-key.nvim", - event = "VeryLazy", - opts = { - -- your configuration comes here - -- or leave it empty to use the default settings - -- refer to the configuration section below - }, - keys = { - { - "?", - function() - require("which-key").show({ global = false }) - end, - desc = "Buffer Local Keymaps (which-key)" - } - }, -} diff --git a/uwsm/.config/uwsm/env b/uwsm/.config/uwsm/env deleted file mode 100644 index d6d3212..0000000 --- a/uwsm/.config/uwsm/env +++ /dev/null @@ -1,4 +0,0 @@ -export EDITOR=nvim -export XCURSOR_SIZE=24 -export SWWW_TRANSITION=any -export SWWW_TRANSITION_DURATION=1 diff --git a/uwsm/.config/uwsm/env-hyprland b/uwsm/.config/uwsm/env-hyprland deleted file mode 100644 index 93f41ef..0000000 --- a/uwsm/.config/uwsm/env-hyprland +++ /dev/null @@ -1 +0,0 @@ -export HYPRCURSOR_SIZE=24