-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
doremire
committed
Sep 17, 2023
1 parent
826e64e
commit fba0d7c
Showing
11 changed files
with
295 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,4 +143,3 @@ It's the coolest theme!!! | |
**あとは楽しんで!** | ||
<br> | ||
-- **Happy Coding!** 🚀 -- | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
require'bufferline'.setup() | ||
|
||
local map = vim.api.nvim_set_keymap | ||
local opts = { | ||
noremap = true, | ||
silent = true | ||
} | ||
|
||
-- 新しいバッファを作成して移動 (<C-n>) | ||
map('n', '<C-m>', '<Cmd>enew<CR>', opts) | ||
map('n', '<C-j>', '<Cmd>BufferLineCyclePrev<CR>', opts) | ||
map('n', '<C-k>', '<Cmd> BufferLineCycleNext<CR>', opts) | ||
map('n', '<leader>e', '<Cmd>bd<CR>', opts) | ||
|
||
-- Ctrl+s で保存 | ||
map('n', '<C-l>', ':w<CR>', opts) | ||
-- Ctrl+z で取り消し (undo) | ||
map('n', '<C-z>', ':undo<CR>', opts) | ||
-- Ctrl+y でやり直し (redo) | ||
map('n', '<C-y>', ':redo<CR>', opts) | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
-- Aura Themeのカラーコード(例として以下のカラーコードを使用) | ||
local aura_bg1 = "#282c34" -- これは例です。実際のカラーコードに置き換えてください。 | ||
local aura_bg2 = "#3a3f4b" -- これも例です。 | ||
|
||
vim.cmd("highlight Headline1 guibg=" .. aura_bg1) | ||
vim.cmd("highlight Headline2 guibg=" .. aura_bg2) | ||
vim.cmd("highlight CodeBlock guibg=" .. aura_bg1) | ||
vim.cmd("highlight Dash guibg=" .. aura_bg1 .. " gui=bold") | ||
vim.cmd("highlight Quote guibg=" .. aura_bg1) | ||
|
||
require("headlines").setup { | ||
markdown = { | ||
headline_highlights = { "Headline1", "Headline2" }, | ||
codeblock_highlight = "CodeBlock", | ||
dash_highlight = "Dash", | ||
quote_highlight = "Quote", | ||
}, | ||
org = { | ||
headline_highlights = { "Headline1", "Headline2" }, | ||
codeblock_highlight = "CodeBlock", | ||
dash_highlight = "Dash", | ||
quote_highlight = "Quote", | ||
}, | ||
-- 他のファイルタイプも同様に設定してください。 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.