This commit is contained in:
2022-07-28 18:11:27 +02:00
parent 57f32cb47a
commit cc3e659086
6 changed files with 71 additions and 26 deletions

View File

@@ -117,12 +117,8 @@ return require("packer").startup(
use {'rust-lang/rust.vim'}
use {'simrat39/rust-tools.nvim'}
-- Debugger support via dap
use { "rcarriga/nvim-dap-ui", requires = {"mfussenegger/nvim-dap"} }
use {'JuliaEditorSupport/julia-vim', opt=true}
vim.g.latex_to_unicode_auto = 1
-- use {'JuliaEditorSupport/julia-vim', opt=true}
-- vim.g.latex_to_unicode_auto = 1
-- themes & colorschemes
use {'arcticicestudio/nord-vim'}

View File

@@ -25,7 +25,7 @@ vim.bo.smartindent = true -- Makes indenting smart
vim.wo.number = true -- set numbered lines
vim.wo.relativenumber = true -- set relative number
vim.wo.cursorline = true -- Enable highlighting of the current line
vim.o.showtabline = 2 -- Always show tabs
vim.o.showtabline = 1 -- Always show tabs
vim.o.showmode = false -- We don't need to see things like -- INSERT -- anymore
vim.o.backup = false -- This is recommended by coc
vim.o.writebackup = false -- This is recommended by coc
@@ -34,11 +34,10 @@ vim.o.updatetime = 300 -- Faster completion
vim.o.timeoutlen = 500 -- By default timeoutlen is 1000 ms
vim.o.clipboard = "unnamedplus" -- Copy paste between vim and everything else
vim.o.laststatus = 3 -- Set global status bar
vim.opt.showtabline = 0 -- Disable tabline
-- vim.opt.winbar = "%=%m %f" -- Show winbar with modified flag and filename right adjusted
vim.opt.winbar = "%=%m %f" -- Show winbar with modified flag and filename right adjusted
-- Enable telescope theme
vim.g.gruvbox_baby_telescope_theme = 1
vim.g.gruvbox_baby_background_color = "dark"
vim.g.gruvbox_baby_background_color = "light"
vim.g.mapleader = ' '

View File

@@ -1,5 +1,5 @@
require('nvim-treesitter.configs').setup({
ensure_installed = { "python", "go", "julia", "elixir", "rust", "gomod", "json", "lua", "ruby", "yaml" },
ensure_installed = { "python", "go", "elixir", "rust", "gomod", "json", "lua", "ruby", "yaml" },
ignore_install = { "haskell" },
highlight = {
enable = true