Skip to content

Commit

Permalink
Update a couple of config
Browse files Browse the repository at this point in the history
  • Loading branch information
kimond committed Sep 9, 2024
1 parent 6b0574d commit 6f65561
Show file tree
Hide file tree
Showing 5 changed files with 417 additions and 0 deletions.
21 changes: 21 additions & 0 deletions nvim/lua/plugins/hardtime.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
return {
"m4xshen/hardtime.nvim",
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
opts = {
disabled = true,
disable_mouse = false,
disabled_keys = {
["<Up>"] = {},
["<Down>"] = {},
["<Left>"] = {},
["<Right>"] = {},
},
},
keys = {
{
"<leader>uB",
"<cmd>:Hardtime toggle<cr>",
desc = "Toggle Hardtime",
},
},
}
17 changes: 17 additions & 0 deletions nvim/lua/plugins/multicursors.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
return {
"smoka7/multicursors.nvim",
event = "VeryLazy",
dependencies = {
"nvimtools/hydra.nvim",
},
opts = {},
cmd = { "MCstart", "MCvisual", "MCclear", "MCpattern", "MCvisualPattern", "MCunderCursor" },
keys = {
{
mode = { "v", "n" },
"<Leader>m",
"<cmd>MCstart<cr>",
desc = "Multicursors",
},
},
}
10 changes: 10 additions & 0 deletions nvim/lua/plugins/refactoring.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
return {
"ThePrimeagen/refactoring.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter",
},
config = function()
require("refactoring").setup()
end,
}
22 changes: 22 additions & 0 deletions wezterm.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
-- Pull in the wezterm API
local wezterm = require("wezterm")

-- This will hold the configuration.
local config = wezterm.config_builder()

-- This is where you actually apply your config choices

config.use_fancy_tab_bar = false
config.font = wezterm.font("JetBrains Mono")
config.font_size = 10.0
config.color_scheme = "Catppuccin Mocha"

config.window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0,
}

-- and finally, return the configuration to wezterm
return config
Loading

0 comments on commit 6f65561

Please sign in to comment.