mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
minor fix
This commit is contained in:
parent
76b5fd4118
commit
19cedd3fdc
3 changed files with 23 additions and 20 deletions
|
|
@ -33,8 +33,6 @@
|
||||||
:desc "Italic with ZWS" "C-c i" (lambda () (interactive) (my/insert-emphasis-with-zws ?/))
|
:desc "Italic with ZWS" "C-c i" (lambda () (interactive) (my/insert-emphasis-with-zws ?/))
|
||||||
:desc "Underline with ZWS" "C-c u" (lambda () (interactive) (my/insert-emphasis-with-zws ?_))
|
:desc "Underline with ZWS" "C-c u" (lambda () (interactive) (my/insert-emphasis-with-zws ?_))
|
||||||
:desc "Code with ZWS" "C-c c" (lambda () (interactive) (my/insert-emphasis-with-zws ?~))
|
:desc "Code with ZWS" "C-c c" (lambda () (interactive) (my/insert-emphasis-with-zws ?~))
|
||||||
:nvom "N" 'org-next-visible-heading
|
|
||||||
:nvom "E" 'org-previous-visible-heading
|
|
||||||
:nvom "M-n" 'org-metadown
|
:nvom "M-n" 'org-metadown
|
||||||
:nvom "M-e" 'org-metaup)
|
:nvom "M-e" 'org-metaup)
|
||||||
|
|
||||||
|
|
@ -97,3 +95,8 @@
|
||||||
(setq org-pomodoro-short-break-format "摸~%s")
|
(setq org-pomodoro-short-break-format "摸~%s")
|
||||||
(setq org-pomodoro-long-break-format "猛摸~%s")
|
(setq org-pomodoro-long-break-format "猛摸~%s")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
;; Org-Babel
|
||||||
|
|
||||||
|
(if (bound-and-true-p ISMAC)
|
||||||
|
(setq org-babel-C-compiler "clang"))
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ case "Darwin"
|
||||||
alias touch=gtouch
|
alias touch=gtouch
|
||||||
alias clip=pbcopy
|
alias clip=pbcopy
|
||||||
alias paste=pbpaste
|
alias paste=pbpaste
|
||||||
|
alias sed=gsed
|
||||||
abbr --add reboot "sudo reboot"
|
abbr --add reboot "sudo reboot"
|
||||||
case "Linux"
|
case "Linux"
|
||||||
# Linux Specific
|
# Linux Specific
|
||||||
|
|
|
||||||
|
|
@ -3,22 +3,21 @@ return {
|
||||||
{
|
{
|
||||||
"catppuccin/nvim",
|
"catppuccin/nvim",
|
||||||
name = "catppuccin",
|
name = "catppuccin",
|
||||||
config = function()
|
opts = {
|
||||||
require("catppuccin").setup({
|
floavor = "auto",
|
||||||
floavor = "auto",
|
background = {
|
||||||
background = {
|
light = "latte",
|
||||||
light = "latte",
|
dark = "mocha",
|
||||||
dark = "mocha",
|
},
|
||||||
},
|
styles = {
|
||||||
styles = {
|
-- keywords = { "underline" },
|
||||||
-- keywords = { "underline" },
|
},
|
||||||
},
|
integrations = {
|
||||||
integrations = {
|
"lualine",
|
||||||
"lualine",
|
},
|
||||||
},
|
}
|
||||||
})
|
|
||||||
end,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
{ "olimorris/onedarkpro.nvim" },
|
{ "olimorris/onedarkpro.nvim" },
|
||||||
{ "rebelot/kanagawa.nvim" },
|
{ "rebelot/kanagawa.nvim" },
|
||||||
-- Highlight objects under the cursor
|
-- Highlight objects under the cursor
|
||||||
|
|
@ -42,10 +41,10 @@ return {
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{ import = "plugins.mod.alpha-nvim" }, -- Dashboard
|
{ import = "plugins.mod.alpha-nvim" }, -- Dashboard
|
||||||
{ import = "plugins.mod.winbar-nvim" }, -- Breadcrumb
|
{ import = "plugins.mod.winbar-nvim" }, -- Breadcrumb
|
||||||
{ import = "plugins.mod.bufferline" }, -- Buffer Top Bar
|
{ import = "plugins.mod.bufferline" }, -- Buffer Top Bar
|
||||||
{ -- Git Blames, Changes
|
{ -- Git Blames, Changes
|
||||||
"lewis6991/gitsigns.nvim",
|
"lewis6991/gitsigns.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("gitsigns").setup({
|
require("gitsigns").setup({
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue