Compare commits

...

5 Commits

Author SHA1 Message Date
b593d94a9c Merge branch 'main' of ssh://git.miningtcup.me:222/MiningTcup/dotfiles
mwar
2025-08-15 21:02:25 -07:00
ab995cb125 nvim suggestions order, idk 2025-08-15 21:00:58 -07:00
3e961a6c92 Update README.md 2025-08-15 17:14:47 -07:00
73df670a25 Update README.md 2025-08-15 15:30:54 -07:00
62796187a6 Update README.md 2025-08-15 15:29:08 -07:00
3 changed files with 23 additions and 7 deletions

View File

@@ -15,7 +15,7 @@
# See https://wiki.hyprland.org/Configuring/Monitors/ # See https://wiki.hyprland.org/Configuring/Monitors/
monitor=eDP-1, 1920x1080@144.00, auto, 1 monitor=eDP-1, 1920x1080@144.00, auto, 1
monitor=HDMI-A-1, 1920x1080@60.00, auto, 1 # monitor=HDMI-A-1, 1920x1080@60.00, auto, 1
# monitor=HDMI-A-1, 1920x1080@60.02Hz, auto, 1, mirror, eDP-1 # monitor=HDMI-A-1, 1920x1080@60.02Hz, auto, 1, mirror, eDP-1
# monitor=HDMI-A-1, 1920x1080@60, auto, 1, mirror, eDP-1 # monitor=HDMI-A-1, 1920x1080@60, auto, 1, mirror, eDP-1
# monitor=HDMI-A-1, 2560x1080@60.00, auto, 1 # monitor=HDMI-A-1, 2560x1080@60.00, auto, 1
@@ -59,7 +59,7 @@ exec-once = [workspace 11 silent] $messaging
exec-once = [workspace 12 silent] foot bluetui exec-once = [workspace 12 silent] foot bluetui
exec-once = [workspace 13 silent] foot -o colors.regular4=191724 nmtuii exec-once = [workspace 13 silent] foot -o colors.regular4=191724 nmtuii
exec-once = [workspace 14 silent] foot btop exec-once = [workspace 14 silent] foot btop
exec-once = [workspace 15 silent] $email exec-once = [workspace 15 silent] sleep 1000 && $email
############################# #############################
@@ -358,6 +358,9 @@ windowrule = float,class:^(org.keepassxc.KeePassXC)
windowrule = float,title:^(Save)$ windowrule = float,title:^(Save)$
windowrule = float,title:^(All Files)$ windowrule = float,title:^(All Files)$
windowrule = float,title:^(Calculator)$ windowrule = float,title:^(Calculator)$
windowrule = float,title:^(Print)$
windowrule = float,title:^(save)$
windowrule = float,class:^(org.kde.kdeconnect.daemon)$
# Vesktop always opens fullscreen on workspace 6 # Vesktop always opens fullscreen on workspace 6
windowrule = workspace 11 silent, class:^(vesktop)$ windowrule = workspace 11 silent, class:^(vesktop)$

View File

@@ -90,10 +90,10 @@ cmp.setup({
["<CR>"] = cmp.mapping.confirm({ select = true }), ["<CR>"] = cmp.mapping.confirm({ select = true }),
}, },
sources = { sources = {
{ name = "nvim_lsp" }, -- LSP completion
{ name = "buffer" }, -- Buffer completion
{ name = "path" }, -- Path completion { name = "path" }, -- Path completion
{ name = "luasnip" }, -- Snippet completion { name = "luasnip" }, -- Snippet completion
{ name = "nvim_lsp" }, -- LSP completion
{ name = "buffer" }, -- Buffer completion
}, },
}) })
@@ -104,6 +104,10 @@ require("nvim-treesitter.configs").setup({
}, },
}) })
require("oil").setup({
default_file_explorer = false,
})
-- nvim-lspconfig - Providing basic, default Nvim LSP client configurations for various LSP servers. -- nvim-lspconfig - Providing basic, default Nvim LSP client configurations for various LSP servers.
local lspconfig = require("lspconfig") local lspconfig = require("lspconfig")
lspconfig.pyright.setup({}) lspconfig.pyright.setup({})
@@ -121,8 +125,8 @@ require("luasnip").config.set_config({
local vim = vim local vim = vim
local opt = vim.opt local opt = vim.opt
opt.foldmethod = "expr" -- opt.foldmethod = "expr"
opt.foldexpr = "nvim_treesitter#foldexpr()" -- opt.foldexpr = "nvim_treesitter#foldexpr()"
vim.wo.number = true vim.wo.number = true
vim.wo.relativenumber = true vim.wo.relativenumber = true

View File

@@ -1,2 +1,11 @@
# MiningTcup's dotfiles for Arch Linux / Hyprland # MiningTcup's dotfiles for Arch Linux / Hyprland
uh yea steal em if u want idc My current dotfiles! I've been working on them for a while, feel free to use them (but please don't claim they're your own)!
## Usage
Install [GNU Stow](https://www.gnu.org/software/stow/). Clone this repo and stow it.
```sh
cd
git clone https://git.miningtcup.me/MiningTcup/dotfiles.git
cd dotfiles
stow .
```