This repository has been archived on 2024-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
nixos/modules/neovim/init.lua
Payas Relekar a6db2abe2c nvim: use torte default colorscheme
Because adding a different colorscheme proved to be too much trouble
2023-09-13 19:18:15 +05:30

34 lines
859 B
Lua

-- Vim/NeoVim built-ins
vim.o.nobackup = true
vim.o.number = true
vim.o.relativenumber = true
vim.cmd [[colorscheme torte]]
-- Neogit (magit clone)
require('neogit').setup()
-- Lualine
require('lualine').setup()
-- Load custom treesitter grammar for org filetype
require('orgmode').setup_ts_grammar()
-- Treesitter configuration
require('nvim-treesitter.configs').setup {
-- If TS highlights are not enabled at all, or disabled via `disable` prop,
-- highlighting will fallback to default Vim syntax highlighting
highlight = {
enable = true,
-- Required for spellcheck, some LaTex highlights and
-- code block highlights that do not have ts grammar
additional_vim_regex_highlighting = {'org'},
},
}
-- Orgmode
require('orgmode').setup({
org_agenda_files = {
'~/org/**/*'
},
})