Compare commits

...

13 Commits

Author SHA1 Message Date
91374acae5 add php back to treesitter after lost in rebase 2023-09-05 22:22:59 +02:00
c595443f97 Merge branch 'office' of git.nussnougate.net:sevi-kun/nvim into office 2023-09-05 22:09:41 +02:00
20e588f4a6 Add neorg fix for windows 2023-09-05 22:09:12 +02:00
b0c7e3e4e1 Update 'lua/sevi-kun/set.lua'
Change wrap indicator to 95 (company standards)
2023-09-05 22:09:12 +02:00
19cba86399 Added branch for office/windows environment 2023-09-05 22:09:12 +02:00
d3e9655b50 Add neorg fix for windows 2023-09-05 21:57:59 +02:00
607a6fb01a Merge branch 'office' of git.nussnougate.net:sevi-kun/nvim into office 2023-09-05 21:48:56 +02:00
741fe78cad Update 'lua/sevi-kun/set.lua'
Change wrap indicator to 95 (company standards)
2023-09-05 21:48:45 +02:00
6d60071768 Added branch for office/windows environment 2023-09-05 21:48:26 +02:00
8576c77886 Update 'lua/sevi-kun/set.lua'
Change wrap indicator to 95 (company standards)
2023-08-24 12:56:43 +02:00
c163e6a83b Merge branch 'office' of git.nussnougate.net:sevi-kun/nvim into office 2023-08-04 22:28:34 +02:00
1030d9da0a Added branch for office/windows environment 2023-08-04 22:26:11 +02:00
c51164f6e0 Added branch for office/windows environment 2023-08-04 07:36:32 +00:00
3 changed files with 7 additions and 6 deletions

View File

@ -1,7 +1,7 @@
-- parsing and highlighting -- parsing and highlighting
require'nvim-treesitter.configs'.setup { require'nvim-treesitter.configs'.setup {
-- A list of parser names, or "all" (the five listed parsers should always be installed) -- A list of parser names, or "all" (the five listed parsers should always be installed)
ensure_installed = { "python", "javascript", "typescript", "c", "rust", "bash", "lua", "vim", "vimdoc", "query" }, ensure_installed = { "python", "javascript", "php", "typescript", "c", "rust", "bash", "lua", "vim", "vimdoc", "query" },
-- Install parsers synchronously (only applied to `ensure_installed`) -- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false, sync_install = false,

View File

@ -57,7 +57,7 @@ return require('packer').startup(function(use)
["core.dirman"] = { ["core.dirman"] = {
config = { config = {
workspaces = { workspaces = {
notes = "~/Documents/Notes", notes = os.getenv("LOCALAPPDATA") .. "\\nvim-data\\Notes",
}, },
default_workspace = "notes", default_workspace = "notes",
}, },
@ -94,9 +94,10 @@ return require('packer').startup(function(use)
-- pretty -- pretty
use { use {
'navarasu/onedark.nvim', "loctvl842/monokai-pro.nvim",
config = function() config = function()
vim.cmd('colorscheme onedark') require("monokai-pro").setup()
vim.cmd([[colorscheme monokai-pro]])
end end
} }

View File

@ -15,7 +15,7 @@ vim.opt.wrap = true
vim.opt.swapfile = false vim.opt.swapfile = false
vim.opt.backup = false vim.opt.backup = false
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir" vim.opt.undodir = os.getenv("LOCALAPPDATA") .. "\\nvim-data\\undodir"
vim.opt.undofile = true vim.opt.undofile = true
vim.opt.hlsearch = true vim.opt.hlsearch = true
@ -29,7 +29,7 @@ vim.opt.isfname:append("@-@")
vim.opt.updatetime = 50 vim.opt.updatetime = 50
vim.opt.colorcolumn = "80" vim.opt.colorcolumn = "95"
vim.g.netrw_preview = 1 vim.g.netrw_preview = 1
vim.g.netrw_liststyle = 3 vim.g.netrw_liststyle = 3