diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index b689030..0033d9e 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -15,3 +15,8 @@ require('lualine').setup() require('plugConfig.notes') --require('plugConfig.neorg') require('plugConfig.orgmode') + +--require('onedark').setup { +-- style = 'dark' +--} +--require('onedark').load() diff --git a/.config/nvim/lua/keymap.lua b/.config/nvim/lua/keymap.lua index 219cedf..217accb 100644 --- a/.config/nvim/lua/keymap.lua +++ b/.config/nvim/lua/keymap.lua @@ -24,10 +24,10 @@ keymap('n', 'zf', ':lua require("telekasten").find_notes()', opts) keymap('n', 'z', ':lua require("telekasten").panel()', opts) -- Neorg Not using default https://github.com/nvim-neorg/neorg/blob/main/lua/neorg/modules/core/keybinds/keybinds.lua -keymap('n', 'otc', ':Neorg keybind norg core.gtd.base.capture', opts) -keymap('n', 'otv', ':Neorg keybind norg core.gtd.base.views', opts) -keymap('n', 'ote', ':Neorg keybind norg core.gtd.base.edit', opts) -keymap('n', 'ott', ':Neorg keybind norg core.norg.qol.todo_items.todo.task_cycle', opts) -keymap('n', 'oo', ':Neorg keybind norg core.norg.esupports.hop.hop-link', opts) +--keymap('n', 'otc', ':Neorg keybind norg core.gtd.base.capture', opts) +--keymap('n', 'otv', ':Neorg keybind norg core.gtd.base.views', opts) +--keymap('n', 'ote', ':Neorg keybind norg core.gtd.base.edit', opts) +--keymap('n', 'ott', ':Neorg keybind norg core.norg.qol.todo_items.todo.task_cycle', opts) +--keymap('n', 'oo', ':Neorg keybind norg core.norg.esupports.hop.hop-link', opts) diff --git a/.config/nvim/lua/options.lua b/.config/nvim/lua/options.lua index 892e591..383482c 100644 --- a/.config/nvim/lua/options.lua +++ b/.config/nvim/lua/options.lua @@ -1,4 +1,4 @@ -vim.cmd "colorscheme nord" +vim.cmd "colorscheme nordfox" vim.o.number = true vim.o.relativenumber = true vim.o.mouse = "a" diff --git a/.config/nvim/lua/plugConfig/treesitter.lua b/.config/nvim/lua/plugConfig/treesitter.lua index 30a622d..5cac024 100644 --- a/.config/nvim/lua/plugConfig/treesitter.lua +++ b/.config/nvim/lua/plugConfig/treesitter.lua @@ -1,4 +1,4 @@ ---require('orgmode').setup_ts_grammar() +require('orgmode').setup_ts_grammar() require'nvim-treesitter.configs'.setup { ensure_installed = {'lua', 'javascript', 'typescript', 'tsx', 'org'}, @@ -7,3 +7,4 @@ require'nvim-treesitter.configs'.setup { additional_vim_regex_highlighting = {'org'} } } + diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index e68bc3e..a074194 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -63,5 +63,8 @@ use "folke/which-key.nvim" -- Colour Schemes use 'arcticicestudio/nord-vim' +use 'EdenEast/nightfox.nvim' +--use 'ful1e5/onedark.nvim' +use 'navarasu/onedark.nvim' end)