diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml index ba8aa90..d381b82 100644 --- a/alacritty/alacritty.yml +++ b/alacritty/alacritty.yml @@ -11,7 +11,7 @@ window: font: normal: family: Cascadia Code PL - style: Light + style: Medium bold: family: Cascadia Code PL style: Regular diff --git a/helix/config.toml b/helix/config.toml index abeb393..5606c14 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -1,4 +1,5 @@ -theme = "ayu_mirage" +# theme = "ayu_mirage" +theme = "night_owl" [editor] line-number = "relative" diff --git a/nvim/after/plugin/colors.lua b/nvim/after/plugin/colors.lua index 0bab7f1..8545ec1 100644 --- a/nvim/after/plugin/colors.lua +++ b/nvim/after/plugin/colors.lua @@ -4,8 +4,9 @@ vim.opt.termguicolors = true -- vim.g.tokyonight_enable_italic = 1 -- vim.g.tokyonight_transparent = true -- vim.cmd("colorscheme tokyonight-moon") -local ayu = require('ayu') +-- local ayu = require('ayu') -ayu.setup({ mirage = true }) -ayu.colorscheme() +-- ayu.setup({ mirage = true }) +-- ayu.colorscheme() +vim.cmd("colorscheme night-owl") diff --git a/nvim/after/plugin/line.lua b/nvim/after/plugin/line.lua index e6e73e5..11f5734 100644 --- a/nvim/after/plugin/line.lua +++ b/nvim/after/plugin/line.lua @@ -1,8 +1,9 @@ require("lualine").setup({ options = { icons_enabled = true, - theme = 'ayu_mirage', + -- theme = 'ayu_mirage', -- theme = 'tokyonight', + theme = 'nightowl', component_separators = { left = '', right = '' }, section_separators = { left = '', right = '' }, disabled_filetypes = {}, diff --git a/nvim/after/plugin/mindnvim.lua b/nvim/after/plugin/mindnvim.lua new file mode 100644 index 0000000..01f1eda --- /dev/null +++ b/nvim/after/plugin/mindnvim.lua @@ -0,0 +1,6 @@ +require("mind").setup({ + persistence = { + state_path = "~/Documents/Mind/main.json", + data_dir = "~/Documents/Mind/data", + } +}) diff --git a/nvim/after/plugin/telecasten.lua b/nvim/after/plugin/telecasten.lua index 40b5cf0..1bed4aa 100644 --- a/nvim/after/plugin/telecasten.lua +++ b/nvim/after/plugin/telecasten.lua @@ -1,35 +1,36 @@ -local home = vim.fn.expand("~/Documents/Telecasten") -local tele = require('telekasten') -local options = { noremap = true, silent = true } +-- local home = vim.fn.expand("~/Documents/Telecasten") +-- local tele = require('telekasten') +-- local options = { noremap = true, silent = true } -tele.setup({ - home = home, - take_over_my_home = true, - auto_set_filetype = true, +-- tele.setup({ +-- home = home, +-- take_over_my_home = true, +-- auto_set_filetype = true, - dailies = home .. "/journal", - dalies_create_nonexisting = true, - template_new_daily = home .. "/templates/daily.md", +-- dailies = home .. "/journal", +-- dalies_create_nonexisting = true, +-- template_new_daily = home .. "/templates/daily.md", - extension = ".md", +-- extension = ".md", - image_link_style = "markdown", +-- image_link_style = "markdown", - plug_into_calendar = true, +-- plug_into_calendar = true, -}) +-- }) -vim.keymap.set('n', 'zn', tele.new_note, options) -vim.keymap.set('n', 'zT', tele.goto_today, options) -vim.keymap.set('n', 'zt', function() - local line = vim.api.nvim_get_current_line() - local nline = os.date("## %H:%M ") - vim.api.nvim_command(":normal Go") - vim.api.nvim_set_current_line(nline) - vim.api.nvim_command(":normal o") -end) -vim.keymap.set('n', 'zs', tele.search_notes, options) -vim.keymap.set('n', 'zg', tele.follow_link, options) -vim.keymap.set('n', 'zp', tele.panel, options) -vim.keymap.set('n', 'zc', tele.show_calendar, options) +-- vim.keymap.set('n', 'zn', tele.new_note, options) +-- vim.keymap.set('n', 'zT', tele.goto_today, options) +-- vim.keymap.set('n', 'zt', function() +-- local line = vim.api.nvim_get_current_line() +-- local nline = os.date("## %H:%M ") +-- vim.api.nvim_command(":normal G2o") +-- vim.api.nvim_set_current_line(nline) +-- vim.api.nvim_command(":normal o") +-- end) +-- vim.keymap.set('n', 'zs', tele.search_notes, options) +-- vim.keymap.set('n', 'zg', tele.follow_link, options) +-- vim.keymap.set('n', 'zp', tele.panel, options) +-- vim.keymap.set('n', 'zc', tele.show_calendar, options) +-- vim.keymap.set('n', 'zo', tele.toggle_todo, options) diff --git a/nvim/lua/packager.lua b/nvim/lua/packager.lua index 853510c..97386b9 100644 --- a/nvim/lua/packager.lua +++ b/nvim/lua/packager.lua @@ -9,7 +9,8 @@ return require("packer").startup(function(use) -- use("folke/tokyonight.nvim") -- use("ghifarit53/tokyonight-vim") - use("Shatur/neovim-ayu") + -- use("Shatur/neovim-ayu") + use("haishanh/night-owl.vim") use("nvim-treesitter/nvim-treesitter", { run = ":TSUpdate" @@ -22,6 +23,15 @@ return require("packer").startup(function(use) use("tpope/vim-commentary") - use("renerocksai/telekasten.nvim") - use("renerocksai/calendar-vim") + -- use("renerocksai/telekasten.nvim") + -- use("renerocksai/calendar-vim") + + -- use("Vimjas/vim-python-pep8-indent") + use({ + "phaazon/mind.nvim", + branch = "v2.2", + requires = { { "nvim-lua/plenary.nvim" } } + }) + + use("pest-parser/pest.vim") end)