Compare commits

...

6 Commits

Author SHA1 Message Date
892c601787 activate line numbers 2025-06-13 06:53:26 +01:00
b7c4f74ef0 colorscheme industry 2025-05-15 10:04:18 +02:00
84d99403f1 some optimizations 2025-05-12 11:13:36 +02:00
0cc481ac2e color adjusted 2025-05-06 15:37:44 +02:00
b64d8a0553 color and treesitter 2024-12-02 07:53:53 +01:00
99d382dfce comments 2023-08-28 10:58:38 +02:00
6 changed files with 44 additions and 29 deletions

View File

@ -7,3 +7,20 @@ Information can be found at
Note: According to the first link it is required to clone the packer stuff locally.
This is done on MacOS and Windows in a slightly different way. Consult https://github.com/wbthomason/packer.nvim#quickstart on details.
Hint: On Unix use
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
~/.local/share/nvim/site/pack/packer/start/packer.nvim
At first start there will be error messages. Ignore them, run ':PackerInstall' and quit and restart nvim.
Install nvim on Debian from source:
git clone https://github.com/neovim/neovim
sudo apt install ninja-build gettext cmake unzip curl
make CMAKE_BUILD_TYPE=Release
sudo make install

View File

@ -1,14 +1,18 @@
vim.api.nvim_exec ('language POSIX', true)
vim.cmd('language POSIX')
require('plugins')
-- require('mason-config')
require('code-completion')
require('file-explorer')
require('mappings')
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2
vim.opt.expandtab = true
vim.opt.number = true
-- vim.o.background = "light"
-- vim.cmd("colorscheme morning")
vim.cmd('colorscheme industry')
-- vim.cmd('colorscheme default')

View File

@ -1,15 +0,0 @@
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
-- vim.opt.termguicolors = true
require("nvim-tree").setup({
filters = {
dotfiles = false,
git_clean = false
},
git = {
ignore = false
}
})

View File

@ -1,3 +0,0 @@
require("mason").setup()
require("mason-lspconfig").setup()

View File

@ -1,14 +1,27 @@
return require('packer').startup(function(use)
use 'wbthomason/packer.nvim'
-- use 'williamboman/mason.nvim'
-- use 'williamboman/mason-lspconfig.nvim'
-- use 'neovim/nvim-lspconfig'
use 'hrsh7th/nvim-cmp'
-- use 'hrsh7th/cmp-nvim-lsp'
-- use 'hrsh7th/cmp-nvim-lsp-signature-help'
use 'hrsh7th/cmp-path'
use 'hrsh7th/cmp-buffer'
use 'nvim-tree/nvim-tree.lua'
use 'Mofiqul/dracula.nvim'
use {
'nvim-tree/nvim-tree.lua',
cmd = { 'NvimTreeToggle', 'NvimTreeFocus' },
config = function()
require("nvim-tree").setup({
filters = {
dotfiles = false,
git_clean = false
},
git = {
ignore = false
}
})
end
}
use 'nvim-treesitter/nvim-treesitter'
end)

View File

@ -1 +0,0 @@
vim.cmd[[colorscheme industry]]